Question
SWC Code doesn't run.
I have an SWC set up so that it imports into another FLA. In the FLA, I have some code like this:
var mp:MovieClip = new MP() as MovieClip;
addChild(mp);
MP is a MovieClip in the SWC typed as a class called 'MP'.
MP has code in it that should execute when it's added. But it doesn't. Does anyone know why?
Thanks in advance.