Strike Force Heroes 2
The explosive sequel to the hit game Strike Force Heroes!
3.96 / 5.00 8,376 ViewsObsolescence
Defeat the enormous mechanical beasts--and become one of them.
4.02 / 5.00 41,904 ViewsI started with stop(); on frame 1. Now I am trying to get it to go to frame 2 when they click the button called aPlay. how do I do this?
Also, I need to figure out how to do a replay button but I am sure if I can figure out this first one, I will be able to do it.
At 3/13/13 07:26 PM, Ghost7231 wrote: I started with stop(); on frame 1. Now I am trying to get it to go to frame 2 when they click the button called aPlay. how do I do this?
Also, I need to figure out how to do a replay button but I am sure if I can figure out this first one, I will be able to do it.
//tell "aPlay" that when we CLICK it, call the function startMovie
aPlay.addEventListener(MouseEvent.CLICK, startMovie);
//gets called when aPlay is triggered
function startMovie(e:MouseEvent):void{
gotoAndPlay(2);
}