Vanilla 1.0.3 is a product of Lussumo. More Information: Documentation, Community Support.
//Align stage to top left "TL"
Stage.align = "TL";
Stage.scaleMode = "noScale";
//Place positioning values inside this function
function positionMCs(){
myMC._width = Stage.width;
}
//Listener to check for resizing
var sizeListener:Object = new Object();
sizeListener.onResize = function (){
positionMCs();
}
Stage.addListener(sizeListener);
1 to 11 of 11