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 ViewsI'm making a tutorial, and i need help with the buttons, I need buttons that go to scene 2, 3, and, 4, i have on(release)
_root.gotoAndPlay(Scene 2, 1)
i'm sure this is wrong, so if you would help me and tell me what i need, i would appreciate it, thank you.
...put quotes around the scene name: ("Scene 2", 1);
ok, thanks a lot, i greatly appreciate it, good luck with your 5SOB RaNaeNae
ok, now i need next frame, and prev frame, are these right?
on(release) {
nextFrame ;
}
on(release) {
prevFrame ;
}
ok, nothing is working, i should put a stop function above each frame right, then have two buttons at the bottom that have the next frame action in them, but they don't work, none of my buttons are working at all, what is wrong, (i have mx 2004)
the functions that don't work are,
on (release) {
_root.gotoAndPlay("Scene 2",1);
}
on(release) {
nextFrame ;
}
on(release) {
prevFrame ;
}
At 4/16/05 09:16 PM, anime_freak1000 wrote: ok, nothing is working, i should put a stop function above each frame right, then have two buttons at the bottom that have the next frame action in them, but they don't work, none of my buttons are working at all, what is wrong, (i have mx 2004)
the functions that don't work are,
on (release) {
_root.gotoAndPlay("Scene 2",1);
}
on(release) {
nextFrame ;
}
on(release) {
prevFrame ;
}
nextFrame() and prevFrame
You must always use () at the end no matter what.
Yeah for each they are like this:
on(release){
_root.gotoAndPlay("Scene 1" 1)
}
on(release){
_root.gotoAndPlay("Scene 3")
}
continue for scene 4
and
on(release){
_root.nextFrame();
}
on(release){
_root.prevFrame();
}
2b r not2b lawl
The goto buttons arn't working now, the prev scene and nextscene are though
NO NO NO. Don't listen to the other guy's thing.
gotoAndPlay("Scene 1",1);
nextFrame();
prevFrame();
There must be a comma after "Scene".
ok, this is really making me mad, nothing is happing, every time i put the action in, test the movie nothing happens i tried all of your possibilities, why isn't it working??
ok, finally i got it, thank you all who helped me, i hope you see my tut when it comes out.
this really isn't a button question, or maybe it is, how would i make a link from a flash, to flashkit.com??
At 4/16/05 11:23 PM, anime_freak1000 wrote: this really isn't a button question, or maybe it is, how would i make a link from a flash, to flashkit.com??
on a button, put
on(release) {
getURL("http://www.flashkit.com");
}
At 4/16/05 11:55 PM, PillowBiter wrote:At 4/16/05 11:23 PM, anime_freak1000 wrote: this really isn't a button question, or maybe it is, how would i make a link from a flash, to flashkit.com??on a button, put
on(release) {
getURL("http://www.flashkit.com");
}
thank you pillow,
what is the script to make a movie clip play and loop?