■ 9つの拡大/縮小領域を制御するには
//メインタイムラインのフレームアクション
import
flash.geom.Rectangle;
this._mc.scale9Grid
= new Rectangle(30,
30, 90, 80);
this._mc.onEnterFrame
= function(){
this._width = _xmouse
- this._x;
this._height = _ymouse
- this._y;
};
※.このサンプルはActionScript2.0でパブリッシュする必要があります。

