figured it out, just use:

Actionscript Code:
myFLV.skinScaleMaximum = 1;

although this means importing the FLVplayback instance from the library so you'll need to use:

Actionscript Code:
import fl.video.FLVPlayback;
var myFLV:FLVPlayback = new FLVPlayback();

addChild(myFLV);
myFLV.skin = "youexternalskin.swf";
myFLV.skinScaleMaximum = 1;
myFLV.source = "myvideoclip.flv";
myFLV.height=288;
myFLV.width=512;
myFLV.x=144;
myFLV.y=164;
myFLV.skinBackgroundColor = 0x000;
myFLV.skinBackgroundAlpha = 1;