AS3 access to properties of movieclip loaded in dynamically

Posted by Anne on Stack Overflow See other posts from Stack Overflow or by Anne
Published on 2010-04-24T20:34:31Z Indexed on 2010/04/24 20:43 UTC
Read the original article Hit count: 298

Filed under:
|
|
|

My movieclip clipArt_mc receives movieclips that are loaded dynamically from a listbox selection using:

var myLoader9:Loader = new Loader();  

I apply color to clipArt_mc using the following:

 var trans3:Transform = new Transform(MovieClip(parent).design_mc.clipArt_mc);

I would like to access the nested or loaded in movieclip inside of clipArt_mc that has in it a movieclip named color_mc so that I can apply color directly to it instead of clipArt_mc.

Can this be done?

Thank you in advance for your time. Anne

© Stack Overflow or respective owner

Related posts about as3

Related posts about loader