so I have a class:
package
{
public final class Main extends Sprite
{
private var TextHolder:Sprite = new Sprite();
public function Main():void
{
spawnHolder();
}
private function spawnHolder():void
{
TextHolder.graphics.beginFill(0xFFFFFF);
TextHolder.graphics.drawRect(0, 0, 100, 80);
TextHolder.graphics.endFill();
stage.addChild(TextHolder);
}
}
}
but the problem is.. I do not see anything on the stage.. This Main Class is the document class btw.
I'd appreciate it very much if anyone could help me out! Thanks in advance.
~Gg