Oppure, via script: associ al movieclip:
codice:onClipEvent (load) { this.end = this._xscale; this.acc = 1.8; this.ine = 1.5; } onClipEvent (enterFrame) { this.dx = (this.dx + (this.end - this._xscale) / this.acc) / this.ine; this._xscale += this.dx; this._yscale = this._xscale; } onClipEvent(mouseMove){ if(this.hitTest(_root._xmouse, _root._ymouse, true)){ if(!this.sopra){ this.sopra = true; this.end = 150; } } else { if(this.sopra){ this.sopra = false; this.end = 100; } } }

Rispondi quotando