■ ムービーの画質を変更するには
//メインタイムラインのフレームアクション
my_btn.onRelease
= function() {
_quality
= "LOW";
my_mc.onEnterFrame
= function() {
this._rotation
+= 10;
if (this._rotation
% 360 == 0) {
delete this.onEnterFrame;
_quality = "HIGH";
}
};
};

