Hey,
Is it possible to creat a invisible mc with in 2 other invisible mc’s and if so would there be any complications. Im trying to do something similar and it gets to the second layer but then doesnt want to load the third inv-mc. Like loading an external swf to a container mc then in that same mc have another external load and then another.
What do ya think.
Cloak
So you want 2 empty MCs in one empty MC?
_root.createEmptyMovieClip("clip1", 1);
_root.clip1.createEmptyMovieClip("clip2", 2);
_root.clip1.createEmptyMovieClip("clip3", 2);
I’m not sure about the deaph though…
to make them “invisible” you can just add
clip1._visible = false;
i think
Well if they are empty they have no need to be invisible…
true…i thought maybe he would wanna load something in it or somethin