Originariamente inviato da andy_s
Buonasera
io utilizzo questo prototype

Movieclip.prototype.elasticScale = function(target, accel, convert) {
xScale = xScale * accel + (target - this._xscale) * convert
yScale = yScale * accel + (target - this._yscale) * convert
this._xscale += xScale
this._yscale += yScale
}


e lo richiamo

onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
elasticScale(90, 0.2, 0.11)
} else {
elasticScale(30, 0.6, 0.21)
}
}

bene come posso fare in modo che avvenga tutto
senza che per forza ci debba andare sopra con il mouse

ciao
onClipEvent (enterFrame) {

elasticScale(30, 0.6, 0.21)
}


cosi?