Flash Actionscript Question?
Flash Actionscript Question?
- Started
- Last post
- 3 Responses
- truemaxim
Hoping someone may know how to do this.
-I have 6 buttons in my flash movie and I need to send this code getURL("javascript:LocalActivate... only after all buttons have been pressed once and only after all buttons have been pressed. I hope i've been clear. Any help is greatly appreciated.
Thanks in advance!
- sauerbraten0
set up a total button variable, use conditionals to check and see when each button is pressed if the other 5 have been pressed also
- unfittoprint0
button1.onPress=function(){
//change to count2, count3... accordingly to button numbers
if(count1==undefined){
count1=true
}
}if (count1 && count 2 && count3 && count4 && count5 && count6){
getURL("javascript:LocalA
ctivateNext()");}
}
- truemaxim0
Many thanks everyone!!