I want to go to a web page after my Flash animation ends without having to click on a button. How do I do this?
How do I get Flash CS6 12.0.0 on Mac OS X 10.10.4 Yosemite to automatically go to a url web page after my animation is done running. I have tried the following actions on the last frame but neither one works. Help!
stop();
navigateToURL("http://www.the-roadster-factory.com/1-Icon.php","_self or _blank");
or this
stop();
var request:URLRequest = new URLRequest("http://www.the-roadster-factory.com/1-Icon.php");
navigateToURL(request, "_self");
