salve ..sto creando un gioco con le funzioni startDrag e stop Drag..pero non mi funziona, praticamente l'oggetto non viene mai rilasciato...
dentro il clip filmato, sull'area sensibile ho scritto....


on (press) {
_root.cervo.startDrag(true);
}
on (release) {
if (_root.cervo.hitTest(_root.disegno)) {
setProperty("_root.cervo", _visible, "0");
_root.disegno.gotoAndStop(2);
} else if (_root.cervo.hitTest(_root.disegno1)) {
setProperty("_root.cervo", _visible, "0");
_root.disegno1.gotoAndStop(2);
}
else if (_root.cervo.hitTest(_root.disegno2)) {
setProperty("_root.cervo", _visible, "0");
_root.disegno2.gotoAndStop(2);
}
_root.cervo.stopDrag();
}




qualcuno mi sa dire come mai non funziona??
Grazie martYna