13/07/2004, 17:30
|
| | | Fecha de Ingreso: noviembre-2003 Ubicación: Guatemala
Mensajes: 742
Antigüedad: 21 años Puntos: 4 | |
intenta esto:
Código:
stop();
segundos = 65;
fps=20;
espera = function () {
cuenta=0;
limite=segundos*fps;
this.onEnterFrame=function(){
if(cuenta<limite){
cuenta++;
}else{
play();
delete onEnterFrame;
}}
};
__________________ '_' ... |