1. Check this tutorial "Redirect to a URL when flash video (FLV) movie finishes playing - Solutions"
2.3. loadmovie() also works.Code:getURL(url, window, variables)
4. ActionScript is like this
Code:function redirectPage(url:String) { getURL(url,"_self") } var website:String = 'http://www.yoursite.com'; var flvLength:Number = lengthOfFLV * 1000; setTimeout(redirectPage,flvLength,website)




Reply With Quote