ムービーの画質を変更するには
//メインタイムラインのフレームアクション
my_btn.onRelease = function() {
_quality = "LOW";
my_mc.onEnterFrame = function() {
this._rotation += 10;
if (this._rotation % 360 == 0) {
delete this.onEnterFrame;
_quality = "HIGH";
}
};
};
・サンプルを
実行
・サンプルを
ダウンロード
説明などは本書を参考にしてください。