Quote:
Originally Posted by loowho
Been looking on-line for the correct code in action scripting 1.0 and 2.0 in Flash CS3.
What is the correct action scripting to make a flash movie stop and then go to an html page titled - home.html? 
|
PHP Code:
stop();
getURL('home.html');
Quote:
Originally Posted by loowho
What is the correct action scripting to make a button when clicked go to an html page titled - home.html?
I would appreciate the help! Been searching on-line for hours and can't find the answer!
|
Depends on what yore using. A Movieclip (Not a Button) or a Button.
Case MovieClip:
PHP Code:
myMovieClipInstantName.onRelease=function(){
getURL('home.html');
}
Case Button:
PHP Code:
on(Release){
getURL('home.html');
}