pxt-microbit Accessibility PR (#529)

* Accessibility changes
This commit is contained in:
Sam El-Husseini
2017-09-07 13:42:08 -07:00
committed by GitHub
parent 3f87576a50
commit e3975e65e5
357 changed files with 1641 additions and 3540 deletions

View File

@ -2,11 +2,11 @@
Create an arrow that randomly points to a player.
### ~avatar avatar
## ~avatar avatar
### ~
## ~
Welcome! This guided tutorial will teach how to program a script that randomly points to a player. Let's get started!
@ -102,9 +102,9 @@ input.onGesture(Gesture.Shake, () => {
```
### ~avatar avatar
## ~avatar avatar
Excellent, you're ready to continue with the [challenges](/lessons/spinner/challenges)!
### ~
## ~

View File

@ -40,7 +40,7 @@ input.onGesture(Gesture.Shake, () => {
})
```
### Challenge 1
## Challenge 1
Modify the random number generator so that it can include new arrows we will create in the next challenge.
@ -82,7 +82,7 @@ input.onGesture(Gesture.Shake, () => {
* Do **not** run the code yet because it will not work until you have conditions for every random number.
### Challenge 2
## Challenge 2
Let's add more arrows that point diagonally.
@ -167,7 +167,7 @@ input.onGesture(Gesture.Shake, () => {
* Run your code to see if it works as expected
### Challenge 3
## Challenge 3
Add some other arrows if there are more than 8 players.