Ho realizzato uno script ke fa ruotare su se stesso in maniera random un cerkio e ke, al momento dell'arresto, fa caricare dei movie clip a seconda dell'angolazione cn cui si arresta il suddetto cerkio, però vengono caricati solo i clip rikiamati quando il cerkio si ferma entro i 180° di rotazione, quelli oltre i 180 nn fungono dove sta il problema??? ecco lo script:

onClipEvent (enterFrame) {
_root.x = _root.x + 1
if (_root.MCPRINC.y > _root.x) {
this._rotation = (this._rotation += 5) * 2;
} if (_root.x>=_root.MCPRINC.y && this._rotation > 0 && this._rotation <= 90) {
_root.MCPRINC.MC1.gotoAndPlay(2);
} else if (_root.x>=_root.MCPRINC.y && this._rotation >= 91 && this._rotation <= 180) {
_root.MCPRINC.MC2.gotoAndPlay(2);
} else if (_root.x>=_root.MCPRINC.y && this._rotation >= 181 && this._rotation <= 270) {
_root.MCPRINC.MC3.gotoAndPlay(2);
} else if (_root.x>=_root.MCPRINC.y && this._rotation >= 271 && this._rotation <= 359) {
_root.MCPRINC.MC4.gotoAndPlay(2);
}
}

se poi conoscete qualke sistema x ottenere lo stesso risultato cn minore spreco d codice nn mi lamento d certo
Ciao a tutti!!!!

StarnovA