ࡱ> )Root Entryp|YrRASHpjS44Contents`fPage 1 FSymbol 59 (  !"#$%X &,-./012356789:;<=G?@ABCDEFHIJKLMNOPQRSTUVYZ[\]^_abcdefghijklmnRoot Entryp|YrRASHAS44ContentsfPage 1WFSymbol 59 '(*&,-./012356789:;<=G?@ABCDEFHIJKLMNOPQRSTUVSymbol 1Symbol 57Symbol 40 ySymbol 41iSymbol 50PSymbol 48fSymbol 47 Symbol 5WSymbol 1Symbol 57Symbol 40 ySymbol 41iMedia 3j Media 2+CPicPage CPicLayer CPicFrame(U 0>00Uj>0"1?u backgroundOCPicText  Verdana"Arachnid  3 Verdana"Insect1?TM decorationOO CPicSpritel_ 8l_dI,box1l 8ld/box21?WF boxesO d(word1  d9word21?il wordsOO CPicButtonq ~qd)q$on(release){ _root.onClickShow(); } showButtonq qd*D'on(release){ _root.calculateScore(); } scoreButtoneq eqd+,T%on(release){ _root.onClickReset(); } resetButtonb$ b$d4_message1?@ controlsO_ _d; scoreOutput,?  d/ scoreboard? score?#// makes some important varables global by creating them at the start var xdif; var ydif; var mymc; var xadif = new array(); var yadif = new array(); var showClick; var randomPlace = new array(); var theClip; var thisWord; var boxNo = 0; var wordNo = 0; var showScore = false; var scoreVar = 0; // set up an array for the word destinations (the boxes) var boxes = new array(); //set up an array for the words var words = new array(); // set up an array for the correct answers var answer = new array(); // ** you can edit the code below this point ** // set the correct answer for each word so that the movie can check // answer[1] = word1 destination box answer[1] = 1; answer[2] = 2; answer[3] = 3; answer[4] = 4; answer[5] = 5; answer[6] = 6; answer[7] = 7; answer[8] = 8; answer[9] = 9; answer[10] = 10; // this variable sets how the score is displayed // 1 = percentage (50%), 2 = score out of total (5/10) var scoreType = 1; // this variable sets if the score is shown in a dialog or all the time // 1 = dialog, 2 = continuously var scoreDialog = 1; // this variable sets if you allow the user to have multiple attempts for each word // 1 = yes, 2 = no (only scores first time) var attempts = 1; // this variable sets if a wrong answer goes back to its starting position // 1 = go back, 2 = stay, 3 = stay until select score var sendWordBack = 3; // this variable sets if you want the tick or cross to appear // 1 = yes, 2 = no var tick = 2; // this variable sets if the text labels are randomised // 1 = yes, 2 = no var randomWords = 1; // this variable sets if more than one text label can be placed on the target boxes // 1 = no, 2 = yes var duplicateDrop = 1; // ** you should not change any code below this point ** // find all the instances of box (target) and word (labels) findClips(); // hide the score button if score is shown all the time if(scoreDialog == 2){ scoreButton._visible = false; scoreOutput._visible = true; calculateScore(); } else{ scoreButton._visible = true; scoreOutput._visible = false; } // set the reset position of each word to its starting position for(var i=1;i<=wordNo;i++){ words[i].starty = words[i]._y; words[i].startx = words[i]._x; } // sets up array to use when sending back selected labels var selWord = new array(); // sets up an array to store if a word has already been tried var usedWord = new array(); for(var i=1;i<=wordNo;i++){ usedWord[i] = 0; } // functions to mix up and place text labels randomiseWords(); placeWords(); // function linked to reset button function onClickReset(){ showClick = false; for(var i=1;i<= wordNo;i++){ usedWord[i] = 0; words[i]._visible = true; } randomiseWords(); allGoBack(); } // sends an individual word back to its start position function sendBack(backLabel){ mymc = backLabel; xdif = (mymc._x - mymc.startx) / 10; ydif = (mymc._y - mymc.starty) / 10; gotoAndPlay("goback"); } // sends all words back to start position function allGoBack(){ for (var i = 1;i <= wordNo;i++){ xadif[i] = (words[i]._x - words[i].startx) / 10; yadif[i] = (words[i]._y - words[i].starty) / 10; selWord[i] = true; } gotoAndPlay("allback"); } // sends selected words back to start position function someGoBack(){ for (var i = 1;i <= wordNo;i++){ xadif[i] = (words[i]._x - words[i].startx) / 10; yadif[i] = (words[i]._y - words[i].starty) / 10; } showClick = false; gotoAndPlay("allback"); } // checks if a word is being dropped over a destination box and responds accordingly function overBox(currWord){ var flag = false; // loop to identify the word that has been dropped for(var i=1;i <= wordNo;i++){ if(currWord == words[i]){ thisWord = i; } } // loop to find out which box it was dropped into for(var i = 1;i <= boxNo;i++){ if(currWord.hitTest(boxes[i])){ // check if the box has already got a word in it if(occTest(boxes[i],currWord) == false){ // position the word into the centre of the box flag = true; currWord._x = boxes[i]._x + ((boxes[i]._width - currWord._width)/2); currWord._y = boxes[i]._y + ((boxes[i]._height - currWord._height)/2); // note that the word has been used usedWord[thisWord] ++; // check if it is correct checkAnswer(currWord); } } } if (flag == false){ sendBack(currWord); } } // checks if a destination box is already occupied function occTest(currBox,thisWord){ var flag = false; if(duplicateDrop == 1){ for(var i = 1;i <= wordNo;i++){ if(words[i] != thisWord){ if(currBox.hitTest(words[i])){ flag = true; } } } } return flag; } // function to check if the answer is correct function checkAnswer(checkWord){ scoreVar = 0; for(var i = 1;i <= wordNo;i++){ selWord[i] = false; } for(var j = 1;j <= boxNo;j++){ if(words[thisWord].hitTest(boxes[j])){ if(j == answer[thisWord]){ if(attempts == 1 or (attempts == 2 and usedWord[thisWord] == 1)){ // mark the answer to hide it later theClip = checkWord; if(duplicateDrop == 2){ theClip._visible = false; } // play a "correct" message if(tick == 1){ message.gotoAndPlay("correct"); } } } else { // mark the object to be sent back selWord[thisWord] = true; // play a "wrong" message if(tick == 1){ message.gotoAndPlay("wrong"); } } } } if(scoreDialog == 2){ calculateScore(); } showClick = false; // send the object back if it is incorrect if(sendWordBack == 1){ someGoBack(); } } // does what it says on the tin function calculateScore(){ scoreVar = 0; for(var i = 1;i <= wordNo;i++){ selWord[i] = false; } for(var i = 1;i <= wordNo;i++){ for(var j = 1;j <= boxNo;j++){ if(words[i].hitTest(boxes[j])){ if(j == answer[i]){ if(attempts == 1 or (attempts == 2 and usedWord[i] == 1)){ scoreVar = scoreVar + 1; } } else { selWord[i] = true; } } } } showClick = false; if(scoreType == 1){ scorePercent = Math.round((scoreVar / _root.wordNo) * 100) + "%"; } else{ scorePercent = scoreVar + " / " + _root.wordNo; } if(scoreDialog == 1){ if(sendWordBack == 3){ showScore = true; someGoBack(); } else{ gotoAndPlay("score"); } } } // click handler for show button function onClickShow(){ for (var i = 1;i <= WordNo;i++){ xadif[i] = (words[i]._x - (boxes[answer[i]]._x + ((boxes[answer[i]]._width - words[i]._width)/2))) / 10; yadif[i] = (words[i]._y - (boxes[answer[i]]._y + ((boxes[answer[i]]._height - words[i]._height)/2))) / 10; selWord[i] = true; } showClick = true; gotoAndPlay("allback"); } // mix up words function randomiseWords(){ if(randomWords == 1){ // reset the array for(var i=1;i<=wordNo;i++){ randomPlace[i] = -1; } // give a random number to each answer for(var i=1;i<=wordNo;i++){ do{ var flag = false; var r = myRandom(1,wordNo); for(var j=1;j<=wordNo;j++){ // has the value been chosen already if(r == randomPlace[j]){ flag = true; } else{ // no, do nothing } } }while(flag == true) randomPlace[i] = r; } placeWords(); } } // random integer generator function myRandom (minNo, maxNo) { r = Math.random(); // toss away 1 if we get it while (r == 1) { r = Math.random(); } return minNo + Math.floor(r * (maxNo + 1 - minNo)); } // place words function placeWords(){ if(randomWords == 1){ for(var i=1;i<=wordNo;i++){ words[i]._y = words[randomPlace[i]].starty; words[i]._x = words[randomPlace[i]].startx; } for(var i=1;i<=wordNo;i++){ words[i].starty = words[i]._y; words[i].startx = words[i]._x; } } else{ for(var i=1;i<=wordNo;i++){ words[i]._y = words[i].starty; words[i]._x = words[i].startx; } } } // find the words and boxes function findClips(){ var myClip = _root; // work through all the movie clips on the main timeline for(var property in myClip){ // only deal with movie clip instances if(typeof myClip[property] == "movieclip"){ // store the _name property var tempStr = myClip[property]._name; // find all the box instances // check for the word "box" in the name and store its position var tempIndex = tempStr.indexOf("box"); // only process movie clips that have "box" in their name if(tempIndex > -1){ // extract the number at the end of the name var tempCounter = parseInt(tempStr.substring(3,tempStr.length)); // use the number to store the name of the instance in the array boxes[tempCounter] = eval(myClip[property]._name); // add one to the numObjects variable boxNo ++; } // find all the word instances // check for the word "word" in the name and store its position var tempIndex = tempStr.indexOf("word"); // only process movie clips that have "word" in their name if(tempIndex > -1){ // extract the number at the end of the name var tempCounter = parseInt(tempStr.substring(4,tempStr.length)); // use the number to store the name of the instance in the array words[tempCounter] = eval(myClip[property]._name); // add one to the numObjects variable wordNo ++; } } } }?I// hide the score button if score is shown all the time if(scoreDialog == 2){ scoreButton._visible = false; scoreOutput._visible = true; } else{ scoreButton._visible = true; scoreOutput._visible = false; } if(scoreDialog == 2 and showClick == false){ calculateScore(); } stop();?+D3mymc._x = mymc._x - xdif; mymc._y = mymc._y - ydif;?xP3mymc._x = mymc._x - xdif; mymc._y = mymc._y - ydif;?3mymc._x = mymc._x - xdif; mymc._y = mymc._y - ydif;?@3mymc._x = mymc._x - xdif; mymc._y = mymc._y - ydif;?D{3mymc._x = mymc._x - xdif; mymc._y = mymc._y - ydif;?Y3mymc._x = mymc._x - xdif; mymc._y = mymc._y - ydif;?_v3mymc._x = mymc._x - xdif; mymc._y = mymc._y - ydif;?P3mymc._x = mymc._x - xdif; mymc._y = mymc._y - ydif;?+3mymc._x = mymc._x - xdif; mymc._y = mymc._y - ydif;?Jmymc._x = mymc._x - xdif; mymc._y = mymc._y - ydif; gotoAndStop("start"); Symbol 50PSymbol 48fSymbol 47 Symbol 5WSymbol 42 ]Symbol 43MSymbol 52>Symbol 566  !"#$%&'()*+,-./012345789:;<=>?@ABCDEFGHIJKLNOPQRSTUVWXYZ[\^_`abcdefghjklmnopqrstuvwxz{|}~Media 3j Media 2+JFIFXXLEAD Technologies Inc. V1.01  % !###&)&"("#!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!2_d @FN.>\3tӜ XhtYh3w-y1`钶=,z]<ͣ4˲1ө(g/C8ԭј^(r祝eA&Y2_1W޼V:ȝ5VXz%iie-TW#ը߆ҐV:Gqi6g+D7IO@it^^m:Bf ŊZƒ6ϧHљjUFwE*@I 7+&2> v@! !ɠx ϣfx0Px`su}]ϥYٱZѺ&~RP"[Vɘj']]mZqƻG-Om$S6! U7-F6El|7i܈QioZr8mpģiIG\)GK|ᦗZ 颵Y"}>R4y>75LC^@|O<7]<^VlL RF A6/C7s+i}l*1h!K]V<2S5Z+J!;>cB1[wӱuJ5n C w9 $H<,1) !"12AQ#0Bqa?ŔvDQ{nSNane&> YeNF+DRB3Mz31\+e\4BGu. 9nBE!}c p'ߩ}ӡ{;(S~$)K ũ.j4DR^mEmeGskCd R38*k?e BA=YIQ*YpeMY&anқ)#lZ/7aJ"G^-Se(4֗:)! 1"2A#03BQ?Ŏ8 ݬgkjM Q۲yJVͳ 8 fg0 +^0{#w4Gd*Si~f3+GG|s\e2I&фgxJfH2\j({ûAu+2R45;L$59uQ{jM1amCljC|SF6)nT:3X[xʐ[(a֔ `,8#T#}I[/UZm$a!D뱩WtZ!x\@: !1AQa "2#BRSq$03Cbrѡ?'I21,sp rd^*vhX[AјT NY^C-tQNj\smҲ`#w#,NM#(k.Wvh6uBH0=?Ab9_#FƧS&!1AQ aq0?!G'﵏y}g6bqnql9 v||vAMiӈݿ顩r& (n6M bJ@HS>9bZ0^ lSTE8fzBXR%mtzU 5Gj3ذmRZs\DA:PߍhO74ւi4`&ڥJ.M35Sj5B\1TTk)X,YHaЋ|uB !8xpV9 ']Ҭ"UWhO41C 2n&s|êiaHololR/I.pZT'NVFZ{()-.`X ( QRXe:4[=R 8Կ]f'28rk%?/ɦ#> d/- m$2IDnOuSI<^h8NLO8a7%6m2@ؒuh!2HTI$I8@$!1AQaq 0?"xӛ$3மH%iиqRF7H{zkVFadS:ZoS  C1T ! ¢!!Y&3)B2Ғ|A9 [+9li~zmƑv4@Cʕ+HoG2rL'Z Ãgn>W@.K/a|UzᳲtMal?E׏sp2QWю6[ Mrqt*qA37%1Od `J)!N6^@b 'AmqQ^"h)q1'K(>-H p\:Ըum xupa_)oE1sqzɭ`X gaۭp$ W<. 'm #vEL>dO#-s߂ۖ%2&+ xLrs)nh}z.`׼L8Za MGV F?dbp( 52L灡JsL1 A`QBЋzݼ:PuH7 4f_B'XW@vi(Zz"UM>:8Jz]xVa_uxTVkZ'XFe1p #r< M#!pS x^g!D:e"n{ eJzBx۵՞!0vw\ p\,G?<& A 'jѱ BI^cuU3.z@(2ܡꏨX<7 ?j8A=޾Hˤ"p +P⌎z@"!1 AQa0?䥍eA:0~fwr!! TѾW#(ވRK'(1OH"< jcz;ҷ(>X-̿#~.fV&֠fdfDsD)E2\"XMKT+Б&?F7 MdUJ̰:<.9#a 1\!ʢc[x]o/55#9u%HEo4$!1A Qaq0?-C-M>&YP.]'B @\.bp^` x sRc~:t \13G]|+fFef/E鋲5/$ڢ*w|Kp@$ Q.r>`Кf{]{?XBـ~2X<@"JAkQв(.HZ 3 h8GjlLCz5L %Xli <= wordNo;i++)JFIFXXLEAD Technologies Inc. V1.01  % !###&)&"("#!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!48d @g1C-vV!?׊_3gC+WG ?(qNZ)I斥C <ڹ6Լ7B+r$ !"񏎧KaD{7\o ~/uPkY3]8mݛŒڬfd7WҨ:Za|uz̤>p,3h,30Hr`\54d.W_It>^WD'?K֌Oޱ^1so]lfûabuSؿɂI=ǿj0y9)dY 2H'!"1 BQa02?ܴ$?[x| sL|/;NxO\) LW>K #§aüϨ`?[~4 0𘣅GKGP4>D4YncTl}%_'҇d -urLZfUzLiЍBـMB&!1"A Q0aq?Tl{THw_Lŭ4f{Af;M%-cBgաT3['62,tߙ(\s3wgc jJll^xֳsa(~-Wb^P{Aڵ/t2#qĽb1b15 !1A"2Qa #bq$0RB?:u7Zle?DY7W\]hX`ެ~j}z5.GS jdج!z(42EOI3"=s|gj2 ;ݒǤ!H#uhjϿèv|ݑ G(=Ojq儶 e#kd臫ԯ1$;]`Fɘwꍝ4v@A e*a|פ2n}T3}HdhсTb_m&!1aAQ q?!'QAN} Q)e r*wS|S+}< E쟟i# \TJ:+]oHKDޘ!ZFmMn킟L`~Y ˘z1zS E^ˑG bYz.Cu@t,P jOyb j!%CKb2|YiEabC@N!&O\A,ҹ|A#.9h,BIWrSTm "a4"&ir#b"#=gL(o'J\3X7Fbhܹv\Jt{!!aO2M1U*;Pl9 H HPxii9$,$!1AQaq ?DJ9Dy<4a!ķ=,/ꤛl8e#U@q1zӊQZS3ߍY͈%RфL,bprbʟ?|x Эyk<HAB.AM{'?g hyn!}*$%izR*W'VEv:[M>:ēm2(!1AQaq 0?Pf:&^ctVv$yuoDD$,H%;j)*($1c FkR)U)>".c_Iݴ +J!TW6d٨Rb.J%;XKH\=ǯP+2R2ڜx/i --4vCYq oUs{ ۫`CPicPage CPicLayer CPicFrame CPicShape3S~ S m000cYb0t#9Y":, 1-1#90(1(1(Ӏ1(Ӏ0VC0NG Y0PB00 80)00e00 0D00E00E0020C0 0D0000*Pl0cTm0.0}0- cYc0Tt#Yƀ",,#0΀؀0V0O0P00 0)0o0000600+ 0MY(0\100QPʀ(04\b|8GZS\ـ U` Հ85=484z+85Q4no; ;D^k=-J$'U5400D00E00D001q0D00E00p00,ol0b  ?] Layer 1OCPicPage CPicLayer CPicFrame (000v?SCPicPage CPicLayer CPicFrame?3( CPicShape 3S7,_0/4_/4/4/4/404444444004h400B80h0r0%0I0@0L0H0&00C90 0BЀh44Ѐk4084hh40 0Ѐ0&00&0C`Ѐ0BYЀЀЀ0%00_/^///0/0|_,/09////^/094__h4//4h^h/k4/h/44/h/44^h4\h40?4/4/4/4//4//4_//0/_0/_0|000u0000000/0000/000_09`_00|00__?txf&`&3S7,_0/4_/4/4/4/404444444004h400B80h0r0%0I0@0L0H0&00C90 0BЀh44Ѐk4084hh40 0Ѐ0&00&0C`Ѐ0BYЀЀЀ0%00_/^///0/0|_,/09////^/094__h4//4h^h/k4/h/44/h/44^h4\h40?4/4/4/4//4//4_//0/_0/_0|000u0000000/0000/000_09`_00|00__?$? + CPicSymbol 8? 8?j?Z textO?Lstop();?_?Y gotoAndStop("off");?~?5gotoAndStop("off"); scriptsOO?off?correct2g?wrong"m labelsOO} else { gotoAndStop("start"); }?%yscoreboard._x = (_root._width - scoreboard._width) / 2; scoreboard._y = (_root._height - scoreboard._height) / 2; stop(); scriptsOO 00v0(?k boxOOCPicText $Verdana(reset?  $Verdana(reset? textOCPicPage CPicLayer CPicFrame 00v0(? (000v?k boxOOCPicText 8Verdana(score?9P textOCPicPage CPicLayer CPicFrame 00v0(?s (000v?O boxOOCPicText $Verdana(show?JI  $Verdana(show?w textO Symbol 40ok(CPicPage CPicLayer CPicFrames 00v0(?s (000v?Y boxOOCPicText $Verdana(OK?*%  $Verdana(OK?7 textO Symbol 56CPicPage CPicLayer CPicFrame CPicSprite Is9d0rk]on(press){ _parent.startDrag(false); } on(release){ stopDrag(); _root.overBox(_parent); }?ra backgroundOO CPicBitmapE?2 textO33xf3dCPicPage CPicLayer CPicFrame CPicSprite Is9d0"]on(press){ _parent.startDrag(false); } on(release){ stopDrag(); _root.overBox(_parent); }?a: backgroundOO CPicBitmapv ?H textO3H33CPicPage CPicLayer CPicFrame CPicShapesP000P?a< boxOx3xx3nCPicPage CPicLayer CPicFrame CPicShape|Y^Osnl2 00R0?-: backgroundOCPicText P Verdana"You scored?H` labelO  U@_root.scorePercentVerdana"?W scoreO?E %3 CPicButton5 5 (7+on(release){ _root.gotoAndStop("start"); }?u  buttonOOPPCPicPage CPicLayer CPicFrame CPicSprite d2&?} Layer 1Ofx̙PCPicPage CPicLayer CPicFrame CPicShape7s :000 0?^ Layer 1Oxx3fCPicPage CPicLayer CPicFrameCPicText +C@_root.scorePercentVerdana"  Verdana"Score?F Layer 1OCPicPage CPicLayer CPicFrame(U 0>00Uj>0"1?u backgroundOCPicText  Verdana"Arachnid  3 Verdana?afor(var i = 1;i <= wordNo;i++){ if(selWord[i]){ words[i]._x = words[i]._x - xadif[i]; words[i]._y = words[i]._y - yadif[i]; } }?:for(var i = 1;i <= wordNo;i++){ if(selWord[i]){ words[i]._x = words[i]._x - xadif[i]; words[i]._y = words[i]._y - yadif[i]; } }?for(var i = 1;i <= wordNo;i++){ if(selWord[i]){ words[i]._x = words[i]._x - xadif[i]; words[i]._y = words[i]._y - yadif[i]; } }?{ for(var i = 1;i <= wordNo;i++){ if(selWord[i]){ words[i]._x = words[i]._x - xadif[i]; words[i]._y = words[i]._y - yadif[i]; } }?Pfor(var i = 1;i <= wordNo;i++){ if(selWord[i]){ words[i]._x = words[i]._x - xadif[i]; words[i]._y = words[i]._y - yadif[i]; } }? for(var i = 1;i <= wordNo;i++){ if(selWord[i]){ words[i]._x = words[i]._x - xadif[i]; words[i]._y = words[i]._y - yadif[i]; } }?8for(var i = 1;i <= wordNo;i++){ if(selWord[i]){ words[i]._x = words[i]._x - xadif[i]; words[i]._y = words[i]._y - yadif[i]; } }?;wfor(var i = 1;i <= wordNo;i++){ if(selWord[i]){ words[i]._x = words[i]._x - xadif[i]; words[i]._y = words[i]._y - yadif[i]; } }?3for(var i = 1;i <= wordNo;i++){ if(selWord[i]){ words[i]._x = words[i]._x - xadif[i]; words[i]._y = words[i]._y - yadif[i]; } }?rfor(var i = 1;i <= wordNo;i++){ if(selWord[i]){ words[i]._x = words[i]._x - xadif[i]; words[i]._y = words[i]._y - yadif[i]; } } if(showScore == true){ showScore = false; gotoAndPlay("score"); } else { gotoAndStop("start"); }?%yscoreboard._x = (_root._width - scoreboard._width) / 2; scoreboard._y = (_root._height - scoreboard._height) / 2; stop(); scriptsOO?setvars?startpb?goback4?allback?scoredP labelsO ables global by creating them at the start var xdif; var ydif; var mymc; var xadif = new array(); var yadif = new array(); var showClick; var randomPlace = new array(); var theClip; var thisWord; var boxNo = 0; var wordNo = 0; var showScore = false; var scoreVar = 0; // set up an array for the word destinations (the boxes) var boxes = new array(); //set up an array for the word) CDocumentPagePage 1Scene 1eAŪH Symbol 59 scoreoutput;&H Symbol 59''H Symbol 50shape2݊H Symbol 50݊H Symbol 48 background0{sH Symbol 48݊H Symbol 47 scoreboard/+HR Symbol 47,HSymbol 5boxDA7Symbol 5I'HSymbol 1word1ASymbol 1̩H Symbol 57word29H word1 copy%H Symbol 40ok(DŽA@.\photosynthesis.flaokMȄADŽA@MȄA Symbol 41show)YĄA:.\photosynthesis.flashowYĄAYĄA:YĄA Symbol 42score*yĄA>.\photosynthesis.flascoreĄAyĄA>ĄA Symbol 43reset+gĄA<.\photosynthesis.flaresetĄAgĄA<ĄA Symbol 52message4,"H..\alternatives\true_false.flamessagePH,"H܎H Symbol 56Tween 18wF..\alternatives\true_false.flaTween 1wFwFwF< CMediaBitsMedia 3bluebutterfly.jpg..\..\images\bluebutterfly.jpgLp:H2Z Media 2tarantula4.jpg..\..\images\tarantula4.jpgr:gH2*@hhhhh CColorDef3PfP0PHP`Px333(3f<03CH3F`3Hxf0f30ff(0f5Hf<`f@x3330333xf3d03]H3Z`3Xx3333303f3PPH33Px`33Px33Pf30f33PHff3(PHf3<x`f3Cxf3Ffff`f03f0ffx0fkHfd`f`x3f033fPH3ffxPH3fdx`3f]x3fZff0f3fPHfff`ffP0xffPxffPH3HfHxH̙n`hx3H33x`3fx`3xx`3̙kx3dfHf3x`ff0xfx0xf̙dxf]`3`f``x`px3`33x3fx3x3xx3nf`f3xffxfxfxxfkx3xfxxxxx3x333f333xfxf3fffffxxH3 HfH(H2`8x`3 `f`̙`(`0xx3xfxx x(xPx3H33x`f3x`3(x`35x3<3`33xf3 x̙3x3(x323x33f3 333(xfH3fx`ff0xf(0xf<xfCf`3fxffx̙fxf(xf5fx3ffff ff((xH3x`f0x̙PPP`3xfx̙P̙(P<x3f̙(xx`3xfxPxPd`3xfx̙PPx3f(xx3fxx3f̙xx3ff`zf*]hip instances if(typeof myClip[property] == "movieclip"){ // store the _name property var tempStr = myClip[property]._name; // find all the box