Redirecting after movie finishes

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]

http://www.macromedia.com/support/flash/action_scripts/actionscript_dictionary/actionscript_dictionary377.html

The parameter url should be passed as string:

getURL("the_page.html", "_self");

Thanks alot guys, I really appreciate it.