\\PULSANTE OFF CURSOR
on (press) {
cursore = false;
Mouse.show();
setProperty("_root.arrow", _x, "-1000");
setProperty("_root.arrow", _y, "-1000");
}


\\PULSANTE ON CURSOR
on (press) {
Mouse.hide();
cursore = true;
}

\\Entrambi i tasti si trovano in un clip filmato chiamato mouse



\\SCRIP DA INSERIRE IN UN CLIP FILMATO DOVE SI TROVA IL PUNTATORE CREATO CON ISTANZA ARROW
onClipEvent (enterFrame) {
if (_root.mouse.cursore) {
this._x = _root._xmouse;
this._y = _root._ymouse;
}
}