Hi I’m having a nasty problem with this actionscript thing. I’m loading an external mc into this empty movieclip:
this.createEmptyMovieClip("logo_mc", this.getNextHighestDepth());
logo_mc.createEmptyMovieClip("container_mc",0);
logo_mc.container_mc.loadMovie("load.swf");
This works perfectly, the swf is loaded and all the content is displayed correctly. But now I want to get the totalframes of this movieclip (I know there are 8 frames in the movie, but it should detect this automatically)
Do do this I tried this code:
trace(this.logo_mc.container_mc._totalframes);
Now Flash returns 1, while it should return 8. I know the path is correct, otherwise Flash should return undefined.
What am I doing wrong?
Thanks in advance,
Tijs