i have the following code:
back = new Sprite();
back.graphics.beginFill(0x000000);
back.graphics.drawRect(0, 0, stage.stageWidth, stage.stageHeight);
addChild(bg);
and for each line i have an error 'access of undefined property back' im guessing i need to import a class at the beginning of the...