With:

group.addChild(holder);
// group.addChild(holder2);

I can see Box1 from AS3 class export Box1.as after compile

// group.addChild(holder);
group.addChild(holder2);

I can see Box2 from AS3 class export Box2.as after compile

but when I do

group.addChild(holder);
group.addChild(holder2);

I get the error.

When I try this

group.addChild(holder);
group.addChild(holder);

I can get Box1.as to show up 2 times.

How can I get Box1 and Box2 to show up at the same time? There seems
to be no solution.

Reply via email to