Hi
I've created a button that when clicked needs to jump to a frame, play the
animation and then load a web page from the net.
I've got the first bit alright with
on(release) {
gotoAndPlay(81);
}
But what Actionscript 2 do I need to put in to jump to an URL after that?
Any help would be appreciated.
clbeech - 09 Jul 2008 17:10 GMT
on the last frame of your animation, place a keyfame on the timeline in a layer called 'actions' then use the code:
stop();
getURL('http://www.thesite.com', '_self');