Ver Mensaje Individual
  #1 (permalink)  
Antiguo 14/01/2007, 13:08
Avatar de El Cipote
El Cipote
 
Fecha de Ingreso: febrero-2006
Mensajes: 213
Antigüedad: 18 años, 2 meses
Puntos: 2
se puede hacer este efecto en un mc?

Saludos...
Mi inquietud va dirigida a pedir ayuda con respecto a realizar este efecto en un mc y ademas que el efecto se vea una ves cargada la pelicula. Aqui esta el codigo q he utilizado, pero en un boton... agradesco antemano la ayuda proporcionada.

on (keyPress "<Down>"){
texto1="Agencia... ";
textoFinal = texto1;
var caracteres= textoFinal.split("");
texto2 = "_";
indice = 0;
delete _root.onEnterFrame;
_root.onEnterFrame = function() {
if (indice<caracteres.length) {
texto2 = texto2.substring(0, texto2.length-1);
texto2 += caracteres[indice]+"_";
indice++;
} else {
delete this.onEnterFrame;
texto2 = textoFinal;
}
};
}