I’m really new at Flash and I was wondering if anyone could tell me how to make the movie redirect to a certain page when it finishes playing. Thanks.
just put this AS on the last frame.
[AS]getURL(the_page.html, “_self”);[/AS]
The parameter url should be passed as string:
getURL("the_page.html", "_self");
Thanks alot guys, I really appreciate it.