16/03/2005, 10:33
|
| Crazy Coder | | Fecha de Ingreso: enero-2002 Ubicación: En la Oficina
Mensajes: 2.880
Antigüedad: 22 años, 10 meses Puntos: 193 | |
Código:
mi_btn.onRollOver = function() {
trace("set");
wait = setInterval(go, 5000);
};
mi_btn.onRollOut = function() {
trace("clear");
clearInterval(wait);
};
function go() {
trace("Vamonos....");
}
|