Maybe it's stupid question, but may I know why function _root.attachMovie not works with imagevue?
I have MC called "my_MC", instance of "my_MC", exported for actionscript, deleted from stage, but keeped in library .
I trying call function like this:
Code
_root.attachMovie("my_MC", "my_MC2", _root.getNextHighestDepth());
Code
var container:MovieClip = _root.createEmptyMovieClip("container", _root.getNextHighestDepth());
container.attachMovie("my_MC", "my_MC2", container.getNextHighestDepth());
Thanks for any reply