Click to See Complete Forum and Search --> : action script help


chenry34
03-13-2007, 03:33 AM
i'm trying to make a button jump from a home page (scene1) to an about page (scene 2) but i can't make it work. i've tried:

on_release
goto and play
scene2, frame1

but i get nothing. any help would be greatly appreciated.

thanks

ryanbutler
03-15-2007, 09:20 AM
If you had frame labels separating each page, then it should be as simple as:

mybutton.onRelease=function(){
gotoAndPlay("about");
}

I'd forget about scenes, all they do is confuse.