As2 loading swf instance
- by user1748474
I have a .swf which loads an external .swf:
this.createEmptyMovieClip("container_mc", this.getNextHighestDepth());
var my_listener:Object = new Object();
my_listener.onLoadComplete = function(target_mc:MovieClip) {
target_mc._x = 50;
target_mc._y = 50;
addChild(my_loader);
var blocker = my_loader.content.test
blocker._visible = false;
}
my_listener.onLoadProgress = function(target_mc:MovieClip) {
trace(target_mc.getBytesLoaded() + " out of " + target_mc.getBytesTotal());
}
var my_loader:MovieClipLoader = new MovieClipLoader();
my_loader.addListener(my_listener);
my_loader.loadClip("child_as2.swf", container_mc);
I want to acces the external swf and make the movieclip with instance name test visible = false; but it won't work.
I have tried a lot of codes and right now it throws me this error:
Scene=Escena 1, layer=Capa 1, frame=1, Line 9 There is no property with the name 'content'.
Any idea?
If you have a better code i will thank you so much.