07/09/17 03:43:08 lLsXrzzj
>>340
ソースとレスを見直した結果
僕は間違っていました。申し訳ない。
MovieClip を extends するなら
/// 外部ファイル
class Rect extends MovieClip{
function Rect() {
this.onEnterFrame = rotationMovie;
}
function rotationMovie():Void {
this._rotation++;
}
}
//fla メインタイムライン
var rect = _root.attachMovie("rect", "rect", mc.getNextHighestDepth());
rect._x = 200;
rect._y = 200;
みたいな感じかな。