0

/t5/animate-discussions/newbie-help-please/td-p/2057691
Jul 30, 2009
Jul 30, 2009
Copy link to clipboard
Copied
Ive just made my first flash intro file which I want to open a web page after it has run to the end.
In Action script 2 it would be as simple as placing this command at the end of the timeline of my flash intro (so I'm told)
Can anyone please help with what I need to change it to to work in Action script 3.
//Goto Webpage Behavior
getURL("Halloween_09/Welcome.html","_self");
//End Behavior
Thankyou.
TOPICS
ActionScript
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
1 Correct answer
Explorer
,
Jul 30, 2009
Jul 30, 2009
import flash.net.navigateToURL;
import flash.net.URLRequest;
navigateToURL(new URLRequest("Halloween_09/Welcome.html"),"_self");
Explorer
,
/t5/animate-discussions/newbie-help-please/m-p/2057692#M40495
Jul 30, 2009
Jul 30, 2009
Copy link to clipboard
Copied
import flash.net.navigateToURL;
import flash.net.URLRequest;
navigateToURL(new URLRequest("Halloween_09/Welcome.html"),"_self");
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more

Guest
AUTHOR
/t5/animate-discussions/newbie-help-please/m-p/2057693#M40496
Jul 30, 2009
Jul 30, 2009
Copy link to clipboard
Copied
great!
thanks for that
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more

