View Single Post
Old 03-29-2011, 03:16 AM   PM User | #2
Labrar
New Coder

 
Join Date: Jun 2008
Posts: 61
Thanks: 0
Thanked 12 Times in 12 Posts
Labrar is an unknown quantity at this point
Quote:
Originally Posted by loowho View Post
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 View Post
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');

Labrar is offline   Reply With Quote