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.


  1. Fun4MySpace.com

    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

  2. Alayas

    there is an error !

    it says with this function

    function track(e:event):void

    !!

  3. gdfg

    function track(e:event):void
    The e in event should be E

    lineY.X = mouseX;

    The .X should be .x

Leave a Comment