18/04/2005, 14:26
|
| | | Fecha de Ingreso: febrero-2005 Ubicación: Asturias
Mensajes: 60
Antigüedad: 19 años, 9 meses Puntos: 0 | |
Hola:
yo lo haría así:
on (rollOver) {
Mouse.hide();
_root.puntero._visible=true;
_root.puntero.startDrag(true);
}
on (rollOut) {
Mouse.show();
_root.puntero.stopDrag();
_root.puntero._visible=false;
}
q es lo mismo, pero te evitas el enterFrame |