i.m attempting to reposition the contents of my swf on the resize of browser window with a tween class - the contents are situated around the perimeter of movie.
how would i go make the adjustment here
tage.align = “TL”;
Stage.scaleMode = “noScale”;
Stage.addListener(dash);
dash.onResize = function()
{
this._x += ((Stage.width/2)-this._x)/5;
this._y += ((Stage.height/2)-this._y)/5;
}
http://www.rigsbydesign.com
http://www.dunwoodie-architectureand…co.uk/main.php
anyone have a working example?