hey can any on help me i need to activate 2 movie clips in the same time. for example. i have on movie click with the letter “A” that shows up or pops up when i press the letter “A” on my keyboard. but i need more then one “A” to pop up when i press the letter “A” on my keyboard. i did this by creating tellTargets. but the problems is when i click the “A” on my keyboard only one pops up. i need the both of them to pop up at the same time. i gave both the the MC’s the same Name so i though it would work that way but i cants seem to get it right. im not new at FlashSC but for some reason i cant make this work:angry: can anyone plz help me out with i really need this to work. I:-)
give the second one a different name and add an additional tell target script on your “A” button
oh man its not working i need something for this .
plz any one help…i need to have this doen by thursday
it would be helpful if you could post your .fla or your code you are using.
yea just post your fla and i will look at it later
here is the flash doc. i dont know how to post stuff like this in here so i hope i did it right…i really hope u can help me:D thank a lot guys for ur time. well…ill get back later :thumb:
OLD->
on (keyPress “a”) {
tellTarget (“p”) {
gotoAndPlay(“a”);
}
}
on (keyPress “a”) {
tellTarget (“p_a”) {
gotoAndPlay(“a”);
}
}
NEW ->
on (keyPress “a”) {
tellTarget (“p”) {
gotoAndPlay(“a”);
}
tellTarget (“p_a”) {
gotoAndPlay(“a”);
}
}
Or better:
[AS]
on(keypress “a”){
_root.p.gotoAndPlay(“a”);
_root.p_a.gotoAndPlay(“a”);
}
[/AS]
(-:
**** u guys are great thanx a lot thanx for ur time and i really appreciate u guys helping me out with this :D. both of them worked really good so i dont know what to pick to many options now but ill pick hehe well thanx for everything