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:
- I drew a green box in Flash CS5 and turned it into a symbol.
- 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!