Hola,
No existe una propiedad de "borde" para MC. La propiedad "border" es para campos de texto dinámicos. Si quieres trazar un borde a tu MC, el código que has encontrado está bien pero creo que no debe ser PROTOTYPE. Creo que si a tu CLIP "fgrande" le pones:
onClipEvent(load){
var t = 1;
with(this){
clear();
var b = getBounds(this);
var xs = 100/this._xscale;
var ys = 100/this._yscale;
lineStyle(t,"0x0000FF",100,true,'none','square','m iter' );
moveTo(b.xMin-t/2*xs,b.yMin-t/2*ys);
lineTo(b.xMin-t/2*xs,b.yMax+t/2*ys);
lineTo(b.xMax+t/2*xs,b.yMax+t/2*ys);
lineTo(b.xMax+t/2*xs,b.yMin-t/2*ys);
lineTo(b.xMin-t/2*xs,b.yMin-t/2*ys);
}
}
Puedes ver el mismo ejemplo en:
www.programador-php.com/flash_crear_borde.php
Saludos