Related posts:
- 10 Flash and Actionscript Tutorials for the Beginner Flash is a piece of software that is used by...
Related posts brought to you by Yet Another Related Posts Plugin.
Related posts:
Related posts brought to you by Yet Another Related Posts Plugin.
var lineX:linex = new linex();
var lineY:liney = new liney();
addChild(lineX);
addChild(lineY);
stage.addEventListener(MouseEvent.MOUSE_MOVE, track);
function track(e:Event):void{
lineX.y = mouseY;
lineY.x = mouseX;
}
[...] Actionscript 3 Mouse Tracking Tutorial [...]