Open GoogleCodeExporter opened 9 years ago
I found a dirty quick fix for that issue:
var bmd:BitmapData = new BitmapData(10,10,true); //this works fine!
for (var xp:int = 0; xp < 10; xp++)
{
for (var yp:int = 0; yp < 10; yp++)
{
bmd.setPixel(xp, yp, 0x00000000);
}
}
var shape :Shape = new Shape();
shape.graphics.beginFill(0xFF0000);
shape.graphics.drawCircle(5,5,5);
shape.graphics.endFill();
bmd.draw(shape);
Original comment by roger...@gmail.com
on 25 Mar 2011 at 3:33
Original issue reported on code.google.com by
antonkul...@gmail.com
on 22 Oct 2010 at 10:45