Vamos a crear un sencillo juego con Flash CS5 y Actionscript 3 donde un dibujo de una cara se moverá de posición al pasar el mouse por encima. Usaremos AS3 y la clase de animación Tween para mover la cara.
Descarga los archivos AQUI
Código :
import flash.events.MouseEvent; import fl.transitions.Tween; import fl.transitions.easing.Elastic; Cristian.addEventListener(MouseEvent.ROLL_OVER, mover); function mover(e:MouseEvent):void { rebotar(); } function rebotar():void { var CristianX:Tween = new Tween(Cristian, "x", Elastic.easeOut, Cristian.x, Math.floor(Math.random()*stage.stageWidth), 1, true); var CristianY:Tween = new Tween(Cristian, "y", Elastic.easeOut, Cristian.y, Math.floor(Math.random()*stage.stageHeight), 1, true); }
Por Freddie el 07 de Marzo de 2011
Por CristianGRojas el 09 de Marzo de 2011
Por rehoscritp el 18 de Marzo de 2011