voglio fare che al passaggio del mouse su una clip appare un'altra clip, intanto ho provato a renderla trasparente al passaggio del mouse modificando alpha ma non funziona ecco lo script, mi aiutate?

onClipEvent (load) {
this._alpha = 100;
}
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse, false)) {
premuto = true;
}
}
onClipEvent (mouseUp) {
premuto = false;
}
onClipEvent (enterFrame) {
if (premuto) {
if (this._alpha >0) {
this._alpha -= 10;
}
}
}