Please help me (guys I am not ActionScript expert)
I have a pic.swf file with three pictures and they are changing every second
and I want to use the pic.swf file in another example.swf file, when the pic.swf loads it stuck at the first pic and it is not changing.
Where is the problem??
I used this code
var mcLoad:MovieClipLoader = new MovieClipLoader();
this.createEmptyMovieClip("mcEmty",0);
mcLoad.loadClip("pic.swf",mcEmpty);
or I tryed this and does the same thing
this.createEmptyMovieClip("mcEmpty", this.getNextHighestDepth());
mcEmpty.loadMovie("pic.swf",1);