this is my first question on stackoverflow! :)

I'm trying to add a MovieClip from the library to the stage with an external class definition. Let me explain:

  1. I drew a green box in Flash CS5 and turned it into a symbol.
  2. clicked "Export for ActionScript" with the class com.Box

Now, if i create a new instance of that class through

var box:Box = new Box();
box.y = 100;
box.x = 100;
addChild(box);

the green box appears and I am happy. :)

But my goal is to give this green box an own class definition, which i specify externally in the file /com/Box.as

package com
{
import flash.display.MovieClip;

public class Box extends MovieClip
{
    public function Box() 
    {
    }
}
}

so nothing special. The .swf-file is built without any erros or warnings, but the green box doesnt appear anymore on stage.

Here's my question:

As long as there is no explicit class definition (apart from the one Flash CS5 creates automatically) the box appears. But as soon as I define it myself, the drawn box is gone. I do have an instance of com.Box - but without the green box I have drawn.

Does my own class definition overwrite the data of the drawing?

Any help is appreciated!

link|improve this question
yeah, found the answer to my problem myself... for others with the same problem:yourpalmark.com/2007/03/31/… – mrmuhkuh Aug 21 '11 at 16:17
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.