onClipEvent (load) {
//OJO CON ESTE VALOR DE 100 ES EL KE TIENE KE SER = AL OTRO DEL BOTON!
_root.tam1 = 100;
}
onClipEvent (enterFrame) {
var vel = 1;
var rebote = 1.5;
tam1 = _root.tam1;
dif = tam1-this._xscale;
vector = (vector+(dif)/vel)/rebote;
this._yscale += vector;
this._xscale += vector;
}
y dentro de este ahi un boton ke contiene este otro codigoo...
on (rollOver) {
// este es el tamaño ke se incrementa cuando pasas el cursor por encima del boton
_root.tam1 = 120;
}
on (rollOut) {
// y este es el tamaño original OJO= esta cantidad tiene ke ser la misma que se encuentra en el
// otro script ke contiene el movie clip asi ke chekale bien
_root.tam1 = 100;
}
oks ahi se los dejo con todo y explicacion el detalle es ke funciona en Flash 5 y 6 pero ya en 7 no jala alguien me puede ayudar a modificarlo para ke pueda ejecutarlo en version 7?
gracias!!
