_root.attachMovie(...)
Posted: 17 Sep 2011, 15:29
Hiello.
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:
this also not works:
Works only "loadMovie" function, but then I can't control functions in "my_MC"...
Thanks for any reply
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