I'm trying to embed test.swf, which consists of a black box with the following properties:
width:100, height:100; x:100, y:100
I also have this actionscript linked to it:
w = Stage.width;
h = Stage.height;
theBox._width = w;
theBox._height = h;
theBox._x = 0;
theBox._y = 0;
If...