I have this action script in a frame:
if(button_name == "button1"){
tellTarget ("frameTransition") {
gotoAndPlay(14);
}
}
In this movie clip it plays what I need starting at frame 14 of the movie clip and stops at frame 26. I'd like to add code here that says:
When frame == 26
tellTarget ("frameButton1") {
gotoAndPlay(2);
}
I know "When frame == 26" is not valid. Can someone tell me what is the statement to determine the frame postion within a movie clip?
Thanks
Rod
if(button_name == "button1"){
tellTarget ("frameTransition") {
gotoAndPlay(14);
}
}
In this movie clip it plays what I need starting at frame 14 of the movie clip and stops at frame 26. I'd like to add code here that says:
When frame == 26
tellTarget ("frameButton1") {
gotoAndPlay(2);
}
I know "When frame == 26" is not valid. Can someone tell me what is the statement to determine the frame postion within a movie clip?
Thanks
Rod