Finding the mouse pointer's position : MouseEvent « Development « Flash / Flex / ActionScript






Finding the mouse pointer's position

 

package {
  import flash.display.*;
  import flash.events.*;
  import flash.text.*;

  public class Main extends Sprite {
    public function Main (  ) {
      var textfield:TextField = new TextField(  );
      textfield.text = "Click here";
      textfield.autoSize = TextFieldAutoSize.LEFT;
      textfield.x = 100;
      textfield.y = 100;

      stage.addChild(textfield);

      textfield.addEventListener(MouseEvent.CLICK, clickListener);
    }

    private function clickListener (e:MouseEvent):void {
      trace("Position in TextField's coordinate space: ("+ e.localX + ", " + e.localY + ")");
      trace("Position in Stage instance's coordinate space: ("+ e.stageX + ", " + e.stageY + ")");
    }
  }
}

        








Related examples in the same category

1.Responding to Mouse and Key Events
2.Mouse Events and Overlapping Display Objects
3.mouseEnabled = false
4.A custom mouse pointer
5.Handling Mouse Events "Globally"
6.Global Mouse Down Sensor
7.Mouse Events and Modifier Keys
8.Mouse Event Hierarchy
9.All types of mouse event
10.Using MouseEvent in Conjunction with the Mouse
11.Add mouse listener to state
12.Creating Mouse Interactions
13.Add mouse move listener
14.Add mouse up and down listener
15.Rollover Test
16.Click Test
17.Post-Event Screen Updates