Ask a Question related to Macromedia Flash Actionscript, Design and Development.
-
cazwazere #1
Help with GotoAndPlay.
Can anyone help me? I want my button to go to scene 31, frame 1 when you click
it, but at the moment, it just goes to the next frame. Here is my current code:
[hr]
on (release) {
gotoAndPlay("31", "1");
}
[hr]
Why isn't it working? Thanks.
cazwazere Guest
-
gotoAndPlay(arraylocation)
I have an array I'm storing string variables in. I want to be able to retrieve an item from the array x, and then gotoAndStop(x); my code... -
gotoAndPlay not working
Hello I have a clip containing an animation starting at frame 2 (frame 1 is emtpy and contains the stop() instruction) I cannot launch... -
movieclip.gotoandplay
maybe i shouldnt expect more than a RTFM from this post, but believe me ive looked long now, and this is just for a f**ng simple thing as getting a... -
gotoandplay doesn't "gotoandplay"
Hi Rick, Maybe a stupid question, but did you put the action on the keyframe 500 or did you by accident put it on a symbol/mc? Else try this:... -
gotoAndPlay in different Scene's
I'm currently trying to make a Website with different Scene's. In each scene, theiris the same menu. But when i go to another Scene, and try to... -
jerome@STC #2
Re: Help with GotoAndPlay.
on (release) {
gotoAndPlay("31",1);
}
should work. the scene name is a string and needs quotes but not the frame number.
jerome@STC Guest



Reply With Quote

