avevo scaricato da qualche parte un fla che faceva ruotare i banner con questo effetto
http://www.terzotempo.com/
avete qualcosa del genere? grazie
avevo scaricato da qualche parte un fla che faceva ruotare i banner con questo effetto
http://www.terzotempo.com/
avete qualcosa del genere? grazie
Raul
Ti do un inizio. Crea un movieclip a forma di rettangolo, e associagli:
codice:onClipEvent (load) { this.end = this._x; this.acc = 1.8; this.ine = 1.5; this.tem = getTimer(); this.pau = 1000; } onClipEvent (enterFrame) { if(getTimer() - this.tem > this.pau){ this.tem = getTimer(); this.end -= 50; } this.dx = (this.dx + (this.end - this._x) / this.acc) / this.ine; this._x += this.dx; }