Prova così, aggiungerdo il Number(), ma cosè che non va, quale errore ti restituisce?
codice:
function elasticScale(clip,tar, accel, convert){ 
clip.onEnterFrame= function(){ 
xScale = xScale*accel+Number((Number(tar)-Number(this._xscale)))*convert; 
yScale = yScale*accel+Number((Numre(tar)-Number(this._yscale)))*convert; 
this._xscale += xScale; 
this._yscale += yScale; 
} 
} 
elasticScale(_root.io,110,0.9, 0.4);