A video tutorial showing how to create two movieclips that follow the X and Y coordinates of the mouse to give a target like effect, this is ideal for shooting type games.
Tags: Actionscript 3, Adobe, AS3, cs3, Flash, mouse, programming, tracking, Video, video tutorial
ShareThis
June 12th, 2008 at 9:11 am
For those who are too lazy to type the code they saw in the video, here it is:
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;
}
Want to play free flash games or put them on your MySpace or Facebook profile?
Visit: http://www.fun4myspace.com
Free Flash Games For Your Profile
September 6th, 2008 at 10:07 am
there is an error !
it says with this function
function track(e:event):void
!!
September 15th, 2008 at 7:40 pm
function track(e:event):void
The e in event should be E
lineY.X = mouseX;
The .X should be .x