ehm...mi sa che nn mi sono spiegato!

allora..i pulsanti sono gia pronti..il problema č che nn mi viene fuori la manina dato che sono dei mc.

cmq il codice associato ai pulsanti č:

onClipEvent (mouseMove) {
if (!premuto) {
if (this.hitTest(_root._xmouse, _root._ymouse, true) && !aperto) {
if (_currentframe>(_totalframes/2)) {
gotoAndPlay(_totalframes-_currentframe);
} else {
play();
}
aperto = true;
} else if (!this.hitTest(_root._xmouse, _root._ymouse, true) && aperto) {
if (_currentframe<(_totalframes/2)) {
gotoAndPlay(_totalframes-_currentframe);
} else {
play();
}
aperto = false;
}
}
}
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
gotoAndStop(20);
_root.comandi(_parent._name);
premuto = true;
}
}


dove devo mettere il codice UseHandCursor per far venire fuori la manina!che linguaggio tecnico che uso!!!
grazie!