2slogan
Novice
Reged: 02/13/05
Posts: 1
|
|
Every time i use the supplied code selections and when i go to the test movie the movie just starts playing without me clicking anything so could somebody send me the code that you have to type in
|
Jeremy
Journeyman
Reged: 11/20/02
Posts: 49
Loc: Columbus, OH
|
|
Hi there,
Well, I am not exactly sure what you're programming, is it one of our tutorials? Most play buttons operate the same way. You click them and it goes to another frame on the main timeline. One important thing to remember is that the frame with your nav buttons should have a stop(); function too so that the playhead doesn't just skip right past your buttons!
Here is some code for a sample play button. Let me know if you want me to be more specific!
Place this code on the button movieClip by clicking the button on the stage and typing into the actions window:
on (release) { gotoAndPlay("myLabel"); }
Then set up the frame you want to take the playhead to with a frame label, "myLabel".
Good luck!
-------------------- JS [EOTT]
|