Hi,
I’ve used this code to extend a bitmap image on my flash movie http:/kraghkrogh.dk
import flash.display.BitmapData;
var tile:BitmapData = BitmapData.loadBitmap("pattern");
this.beginBitmapFill(tile);
this.lineTo(Stage.width, 0);
this.lineTo(Stage.width, Stage.height);
this.lineTo(0, Stage.height);
this.lineTo(0, 0);
this.endFill();
Is there any way to make it extend thorughout the whole html file instead of just the flash movie?
/regards
Lars Kragh