Hiya. I'm totally new to flash, and I'm trying to see what I can do with raw ActionScript at the moment. I've got some code that manages to draw a tiled background, but when I try to run it in GFx I get an error:
Which seems to be because of BitmapData not actually existing in this line:
Is that just something you can't use with GFx, or is there a different thing you have to do to get it to import properly, or what? Is there a list of this stuff?
Code:
Error: <unknown>::CreateNewObject returned NULL during creation of <unknown> class instance.
Code:
var bmd:BitmapData = new BitmapData(512, 256, true);

Comment