I'm trying to dynamically addChild a Sprite to an already tweened MovieClip (tweened on the Flash timeline). Let's say ObjectA is the tweened object, I published it in my swc and linked it to my Actionscript project in Flash Builder. I make an instance of ObjectA in my class, and then try to do the following:
var objectA:ObjectA = new ObjectA(); var objectB:ObjectB = new ObjectB();
objectA.addChild(objectB); addChild(objectA);
Now, the problem is, objectB doesn't tween along with objectA. Is there any logical solution to this?
Thanks in advance, Jennifer