sera,
fino a 180 si ferma..
da valore 181 in poi.. esegue loop! come fermarlo per un valore superiore a 180... per es, valore 360??

codice:
onClipEvent (load) {
	this.rotationSpeed = 6;
}
onClipEvent (enterFrame) {
	_rotation += rotationSpeed;
	if (this._rotation >=360) {
	rotationSpeed *= 0;
	}
}
denghiù