0

Press でムービークリップを前面に出し、Release でムービークリップを 1 つのレイヤーだけのムービークリップから背面に戻したい

私はこれを使用します.swapDepths(深さ)が機能しません

コード:

this.onPress = function(){ this.swapDepths(100);enter code here } this.onRelease = function(){this.swapDepths(-100);}

私を助けてください

4

2 に答える 2

0

これを使用したい場合があります:

this.onRelease = function() { 
    this.swapDepths(mc1);
}; 
this.onRelease = function() { 
    this.swapDepths(mc2); 
};

mc1 と mc2 は、2 つのムービークリップのインスタンス名です。

これらのムービークリップがボタン オブジェクト内にある場合は、「this.mc1」/「this.mc2」を使用します。

そうすれば、それぞれの深さを知らなくても、お互いに深さを交換するだけです。

于 2013-03-25T18:35:53.333 に答える