Monster Racer Rush
Select between 5 monster racers, upgrade your monster skill and win the competition!
4.23 / 5.00 3,881 ViewsBuild and Base
Build most powerful forces, unleash hordes of monster and control your soldiers!
3.93 / 5.00 4,634 Viewsfor my whack a cream game, how do u make it so when u click it plays a new frame in the mouse? like a hammer?
on(press){
gotoAndStop(nextFrame);
}
that goes on the mouse MC
At 2/14/06 08:58 PM, MaxV wrote: on(press){
gotoAndStop(nextFrame);
}
that goes on the mouse MC
what the fuck?? you can't put nextFrame inside gotoAndStop -_-
on(mouseDown){
play();
}
Well, if you have a mouse movie clip, on frame 1 put a stop(); action, then on frame 2 continue with the animation. Then, on the _root. level movieclip (the main clip on the stage), put this:
onClipEvent(mouseDown){
this.gotoAndPlay(2);
}
#1286129 // soundcloud.com/1shibumi
This is the correct way to do it. The 2 above are wrong.
#1286129 // soundcloud.com/1shibumi
At 2/14/06 09:39 PM, boney_man wrote: This is the correct way to do it. The 2 above are wrong.
actually, no, you're wrong.
At 2/14/06 09:45 PM, reality_check7 wrote:At 2/14/06 09:39 PM, boney_man wrote: This is the correct way to do it. The 2 above are wrong.actually, no, you're wrong.
oh, whoops, I was looking at a different code. he is right. nevermind me.