Re: [Flashcoders] relative positioning with stage.NO_SCALE

2009-10-15 Thread Pedro Kostelec
stage.stageAlign = StageAlign.TOP_LEFT; stage.scaleMode = StageScaleMode.NO_SCALE; theStrings.x = stage.stageWidth/2; //this places the mc to the horizontal center of the swf theStrings.y=stage.stageHeight/2 //this places the mc to the vertical center of the swf or theStrings.x = 0;//this places

[Flashcoders] relative positioning with stage.NO_SCALE

2009-10-15 Thread Mendelsohn, Michael
Hi list... I have a 1920x1080 stage in author mode. The swf sits in an html page aligned absmiddle. I want a movieclip to always stay in the upper left corner, when the stage is resized, but the code I've got isn't working perfectly. Anyone have a good routine for this? Thanks, - Michael M.