__etc ага, спасибо
Добавлено через 23 минуты

Код AS1/AS2:
import flash.display.*;
import flash.geom.*;
var bmpd:BitmapData = new BitmapData(2,2);
var rect1:Rectangle = new Rectangle(0,0,1,1);
bmpd.fillRect(rect1, 0x000000);
bmpd.fillRect(rect2);
this.createEmptyMovieClip("bmp_fill_mc", this.getNextHighestDepth());
with (bmp_fill_mc) {
matrix = new Matrix();
matrix.rotate(Math.PI);
repeat = true;
smoothing = false;
beginBitmapFill(bmpd, matrix, repeat, smoothing);
moveTo(0, 0);
lineTo(0, 600);
lineTo(600, 600);
lineTo(600, 0);
lineTo(0, 0);
endFill();
}
bmp_fill_mc._xscale = 100;
bmp_fill_mc._yscale = 100;
как мне избавиться от белого (сделать его прозрачным)?