CodingForums.com

CodingForums.com (http://www.codingforums.com/index.php)
-   Flash & ActionScript (http://www.codingforums.com/forumdisplay.php?f=52)
-   -   Please help with basic actionscripting! (http://www.codingforums.com/showthread.php?t=222632)

loowho 03-28-2011 11:11 PM

Please help with basic actionscripting!
 
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? :confused:

What is the correct action scripting to make a button when clicked go to an html page titled - home.html? :confused:

I would appreciate the help! Been searching on-line for hours and can't find the answer!

Thanks!!!

Labrar 03-29-2011 03:16 AM

Quote:

Originally Posted by loowho (Post 1071189)
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? :confused:

PHP Code:

stop();
getURL('home.html'); 

Quote:

Originally Posted by loowho (Post 1071189)
What is the correct action scripting to make a button when clicked go to an html page titled - home.html? :confused:

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');




All times are GMT +1. The time now is 09:19 AM.

Powered by vBulletin®
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.