Press でムービークリップを前面に出し、Release でムービークリップを 1 つのレイヤーだけのムービークリップから背面に戻したい
私はこれを使用します.swapDepths(深さ)が機能しません
コード:
this.onPress = function(){
this.swapDepths(100);enter code here
}
this.onRelease = function(){this.swapDepths(-100);}
私を助けてください
Press でムービークリップを前面に出し、Release でムービークリップを 1 つのレイヤーだけのムービークリップから背面に戻したい
私はこれを使用します.swapDepths(深さ)が機能しません
コード:
this.onPress = function(){
this.swapDepths(100);enter code here
}
this.onRelease = function(){this.swapDepths(-100);}
私を助けてください
これを使用したい場合があります:
this.onRelease = function() {
this.swapDepths(mc1);
};
this.onRelease = function() {
this.swapDepths(mc2);
};
mc1 と mc2 は、2 つのムービークリップのインスタンス名です。
これらのムービークリップがボタン オブジェクト内にある場合は、「this.mc1」/「this.mc2」を使用します。
そうすれば、それぞれの深さを知らなくても、お互いに深さを交換するだけです。