Ver Mensaje Individual
  #3 (permalink)  
Antiguo 14/06/2007, 09:50
E1001
 
Fecha de Ingreso: diciembre-2005
Mensajes: 5
Antigüedad: 18 años, 4 meses
Puntos: 0
Re: Problema con esta función

Ei muchas gracias por tu respuesta.

Podrias mirar si esta bien, es que no me funciona

MovieClip.prototype.Ampliar = function(valor) {
this.onEnterFrame = function() {
this._xscale = valor-(valor-this._xscale)/1.1;
this._yscale = this._xscale;
};
};

Enlaces = new Array();
Enlaces = ["b.swf","c.swf","hola.swf"];


for (i=1; i<13; i++) {

Btn = this["Boton"+i];

Btn.Link = Enlaces[i];
Btn.onRollOver = function() {

this.Ampliar(350);
}
Btn.onRollOut = function() {

this.Ampliar(100);
}
Btn.onRelease = function() {
mcVacio.loadMovie(this.link,this.nivel)
}
}


No he entendido mucho lo que me has comentado y lo he sustituido por el GETURL.

gracias