ho un movieclip obj4 con all'interno un button
sul button ho scritto
on (press) {
this.startDrag();
_root.obj4.swapDepths(_root.obj1);
_root.obj4.swapDepths(_root.0bj2);
_root.obj4.swapDepths(_root.obj3);
_root.obj4.swapDepths(_root.obj4);
}
on (release) {
this.stopDrag();
}
il problema è: anche quando l'oggetto sta sotto gli altri, se clicco scambia dinuovo (xche ho messo on press) ... io voglio solo portar in primo piano gli oggetti cliccati (ma una volta), cosa mi consigliate?
TNX