Flashvault.net

Find out mouse position

5.9.2006, 7:47    Total views: 22434

In this tutorial I will show you how to get mouse position information. I know this is not very usefull now but when you comprehend the structure of this exercise you can easely make flash movie in which the some objects following the mouse cursor by reading mouse position coordinates.



Step 1

Create a new flash document, select the first frame, press F9 to open the Action Script Panel and paste this script inside:

this.createTextField("mouse_info", 999, 5, 5, 250, 80);
mouse_info.html = true;
mouse_info.wordWrap = true;
mouse_info.border = true;
mouse_info.autoSize = true;
mouse_info.selectable = false;


var mouseListener:Object = new Object();
mouseListener.onMouseMove = function() {
var table_str:String = "";
table_str += "My mouse position:  \t"+"x:"+_xmouse+"\t"+"y:"+_ymouse+newline;
table_str += "
";
mouse_info.htmlText = table_str;
};

Mouse.addListener(mouseListener);

Test your movie (Ctrl+Enter)

Explanation :

The script:

this.createTextField("mouse_info", 999, 5, 5, 250, 80);
mouse_info.html = true;
mouse_info.wordWrap = true;
mouse_info.border = true;
mouse_info.autoSize = true;
mouse_info.selectable = false;

makes a new text box named „mouse_info“  and sets the text box parameters (width,height,multiline...).

The script :

var mouseListener:Object = new Object();
mouseListener.onMouseMove = function() {
var table_str:String = "";
table_str += "My mouse position:  \t"+"x:"+_xmouse+"\t"+"y:"+_ymouse+newline;
table_str += "
";
mouse_info.htmlText = table_str;
};
Mouse.addListener(mouseListener);

Cathes the mouse position on the x axis and y axis and sends information to the text box which I have created before („mouse_info“). Text box wtites these information on the screen.

We're done!

Enjoy!

Download source file (.fla)

Have questions about this tutorial?
Visit our friendly Community Forums!
Digg it! Add this tutorial to del.icio.us! Furl it! Add this tutorial to reddit! Spurl it! Add this tutorial to technorati!

Forum - Newest Discussions

Convert FLV to iPod MP4 Video
Last post by: linddy
Date: 04.12.2008 10:40:59

How do I combine images with text simultanuelsy?
Last post by: speedyj
Date: 03.12.2008 23:10:49

Convert AVI Video to Flash
Last post by: linddy
Date: 29.11.2008 04:40:55

photogallery
Last post by: trnghosn
Date: 26.11.2008 16:22:19

For Sale Brand NewHTC Touch HD $380Samsung i900 Om
Last post by: so100
Date: 25.11.2008 13:01:33

For Sale Brand NewHTC Touch HD $380Samsung i900 Om
Last post by: so100
Date: 25.11.2008 13:00:48

Waiting for your hour of triumph? It is near!
Last post by: VitaMary
Date: 21.11.2008 18:46:41

Yeow dogs!
Last post by: deco11
Date: 21.11.2008 01:15:49

Show your girlfriend what a real sex is!
Last post by: VitaMary
Date: 20.11.2008 22:00:13

Related links