views:

118

answers:

2

I have a SWF that is acting as a sort of intro for my site, when the intro is done playing, I would like it to go to a different site. How would I do this, and would I just put it in the actions panel of the last frame on the timeline? Thx in advance!

+3  A: 
navigateToURL(new URLRequest("YOUR WEBSITE URL", "_self"))

docs: http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/net/package.html#navigateToURL%28%29

greg
A: 

You can use ExternalInterface to achieve this by calling JavaScript on the surrounding HTML page.

Joel Hooks