tengo este codigo pero ne encuentro como hacer que funcione bien, solo crece el objeto pero no lo regresa al tamaño original.
Código :
boton1.onRollOver=function(){
objeto.onEnterFrame=function(){
if (this._xscale<190){
this._xscale=this._yscale=this._xscale+10
}
}
}
boton1.onRollOut=function(){
objeto.onEnterFrame=function(){
if (this._xscale<60){
this._xscale=this._yscale=this._xscale-10
} else{
delete this.onEnterFrame
}
}
}
agradeceria mucho su ayuda[/quote][/code]
