Couldn't you just use navigateToURL at the end of the animation? Though, I can't remember if navigateToURL requires user action.
Or, you could use ExternalInterface to call a javascript redirect. I have a function that I use in some cases that looks something like:
function redirectToURL(url:String):void {
if (ExternalInterface.available) {
var func:XML = <script>
<![CDATA[
function redirect(redirectURL) {
window.location = redirectURL;
}
]]></script>;
ExternalInterface.call(func, url);
} else {
// external interface is unavailable.
}
}
It's a bit of a hack, but if you don't have access to the container or JS files...it gets the job done.