Quote Originally Posted by angelhdz View Post
In your loaded swf, on the first frame of the animation or whatever it is, make a variable like
PHP Code:
var Redirect:Boolean=false
and on the last frame
PHP Code:
Redirect=true

And in your container/Loader swf put

PHP Code:

onEnterFrame
=function(){
if (
container_mc.Redirect==true){
getURL("www.blabla.com""_self");
}

Hope that helps (i have not tested it)
The swf could not be opened because it is a converted swf.

Thanks for the reply.