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)
Thanks for the reply. But the problem is this swf is derived from one FLV by just converting it with the help of a converter. There is only one frame

where I put the "container_mc" and load the swf.The swf could not be decompiled in a fla. Now this is the situation, can you think of any other

method.

Thanks for the reply.