hide movie clip of external swf
Hi there.
I have my main.swf and in the second frame i load an external swf called first.swf with this method:
[AS]var loader:MovieClipLoader = new MovieClipLoader();
this.createEmptyMovieClip("myGalleryContainerproducts",5);
myGalleryContainerproducts._lockroot=true;
loader.loadClip("first.swf",myGalleryContainerproducts);
myGalleryContainerproducts._y =86;
myGalleryContainerproducts._x =50;
[/AS]
In first.swf i have two movie clips with instance names ena and dyo
I want in main.swf in the third frame to hide these movie clips of first.swf (only the movie clips not the whole .swf) or to move them (change x and y values) so they practically hide.
Any solutions?
Thank you in advance