Star Animation in Flash using AS3.0 - Flash Tutorials

Опубликовано: 16 Октябрь 2024
на канале: VerkkoNet
2,388
13

In this video tutorial, you can learn nice mouse move effects.

Website: http://samsolomonprabu.com/

Here's the source code:
----------------------------
import flash.display.MovieClip;
import flash.events.MouseEvent;

stage.addEventListener(MouseEvent.MOUSE_­MOVE, myMouse);

function myMouse(e:MouseEvent):void{
var obj:star = new star();
obj.x = mouseX;
obj.y = mouseY;
obj.rotation = Math.random() * 360;
stage.addChild(obj);
}