Skip button?

What script should I attach to a button to skip an intro on my site? Ie: to go to a later frame and/or scene…

Thanks in advance…

-P.

any button with as:
[AS]on(release) {
_root.gotoAndPlay(frameyouwant);
}[/AS]

cheers

What if I want to go to a frame in another scene?

-P.

hehe i had that same problem


on(whateveh){
    gotoandplay("1",1);
}

Goes to Scene I Frame 1

Someone told me that labels would work even with scenes, i havent checked out…

Also, if you want to skip a frame use


on(whateveh){
    gotoAndPlay(_currentframe+2);
}

Thanks!

-P.