Hi,
i am trying to resize externally loaded swf`s that are 800x600 to fit in a preview window that is 124x93… everything works great as long as the external swfs have a MC that fills the stage (i.e that is 800x600) is there a way to get around this?
var max_width = 124;
var max_height = 93;
var loader_listener:Object = new Object();
loader_listener.onLoadStart = function() {
chan1_preview.setMask(chan1_mask);
chan1_preview._visible = false;
};
loader_listener.onLoadInit = function(target_mc:MovieClip):Void {
var chan1_preview_x = 263;
var chan1_preview_y = 231;
// resize to fit width
target_mc._width = max_width;
target_mc._yscale = target_mc._xscale;
// if height is too much then resize to fit height
if (target_mc._height>max_height) {
target_mc._height = max_height;
target_mc._xscale = target_mc._yscale;
}
// center clip (rounded to nearest pixel to keep things sharp)
chan1_preview._x = Math.round(chan1_preview_x+(max_width-target_mc._width)/2);
chan1_preview._y = Math.round(chan1_preview_y+(max_height-target_mc._height)/2);
};
loader_listener.onLoadComplete = function() {
chan1_preview._visible = true;
};