emma welles


full-page flash
November 21, 2006, 5:30 pm
Filed under: actionscript, flash, portfolio

i must do this. i want a beautiful texture to take up the whole page, and flow with the size of the user’s monitor.

i asked Mel if she knew how to do this, she pointed me to these references:
david stiller’s blog
mm livedocs

Stage.scaleMode = "noScale";
Stage.align = "TL";
var stageListener:Object = new Object ();
stageListener.onResize = positionContent;
Stage.addListener(stageListener);

function positionContent():Void {
	//set clip coordinates
}
positionContent();