16/07/2006, 13:27
|
| | | Fecha de Ingreso: agosto-2003 Ubicación: lima
Mensajes: 551
Antigüedad: 21 años, 3 meses Puntos: 0 | |
counter = 0;
matriz = new Array();
matriz[0] = new Array();
intervalo = setInterval(animarObjeto, 100);
function animarObjeto() {
counter++;
matriz[0].push(counter);
trace("-->"+matriz[0]);
} |