// ** you will edit the code below this
point **
// sets up an array for the word destinations (the boxes)
var boxes = new array();
// adds the name of each box symbol to its variable
boxes[1] = box1;
boxes[2] = box2;
boxes[3] = box3; (add
a line for each box you have)
// tells flash how many boxes there are
var boxNo = 6; (or
however many you have)
//sets up array for the words
var words = new array();
words[1] = word1;
words[2] = word2;
words[3] = word3; (add
a line for each text label)
// tells flash how many words there are
var wordNo = 6; (or
however many you have)
// sets the reset position of all words to their starting position
word1.starty = word1._y;
word1.startx = word1._x;
word2.starty = word2._y;
word2.startx = word2._x;
word3.starty = word3._y;
word3.startx = word3._x; (a pair of
lines for each text label)
// sets up an array for the correct answers
var answer = new array();
// sets the correct answer for each word
// answer[1] = word1 destination box etc.
answer[1] = 1;
answer[2] = 2;
answer[3] = 3; (a
line for each pair - you may have to go back to the stage to work
out which box matches with which text label)
// ** you should not change any code below this point ** |