Hi this is Hagaya and a forum for all. I am not a very good scripter (I know buttons and mouse covers and thats about it), and this is a forum for people like me; people who need help in action script. Post a question on anything you like(just don't spam by saying you wanna know how to make p0rtal portals).
Lemme start off like this 1. I need a variable transfer( as in change from variable "mike" to variable "joe") code. 2. I will give some newbies some help; play buttons. first make your button, then right click it and convert to symbol. Name it whatever you want, then highlight the button thing below it. right click it and click actions to goto the actionscript menu. button script as follows(feel free for cut and paste):
on(release) {
gotoAndPlay(_)
}
lemme explain:
on(release)<-- makes the following action (shown by the '{' symbol) work when you release the button. "release" can be replaced by releaseOutside or press, among other things like that(the entire script IS case sensitive)
gotoAndPlay(_) is the action, it makes the animation go to a certain frame, the underline in the parenthesies is where the number goes. The number you put in there tells the animation where it should go: gotoAndPlay(3) makes it go to frame three.
Thats how to make a play button.
Oh yeah, and to make it so at the frame where the button is, it doesn't just go right past it and into the animation, right click the frame where it is up on the timeline then go to actions then do this script:
stop();
it does exactly what you think, stops the animation on that frame.
go ahead and use it as you like, cuz your welcome. thats how this forum works, but you don't have to explain the script to post it cuz that takes too much space up sometimes.