Reputation: 5758
how to make flash after finish the movie, then it will go to URL i choose?
Upvotes: 0
Views: 3627
Reputation: 3548
Well...
Use navigateToURL
: http://bit.ly/fVvlxm
In the last frame of your MovieClip :
navigateToURL(new URLRequest("http://yoururl.com"),"_self");
OR
movieClip.addFrameScript(test.totalFrames-1, function() : void {
navigateToURL(new URLRequest("http://yoururl.com"),"_blank");
});
Upvotes: 2