Xmouse (Textfield._Xmouse Property) - MACROMEDIA FLASH 8-ACTIONSCRIPT 2.0 LANGUAGE Reference

Actionscript 2.0 language reference
Table of Contents

Advertisement

var mouseListener:Object = new Object();
mouseListener.onMouseDown = function() {
coords_txt.text = "X:"+Math.round(_xmouse)+", Y:"+Math.round(_ymouse);
coords_txt._x = _xmouse;
coords_txt._y = _ymouse;
};
Mouse.addListener(mouseListener);
The
MovieClip.getNextHighestDepth()
7 or later. If your SWF file includes a version 2 component, use the version 2 components
DepthManager class instead of the
See also
_xscale (TextField._xscale property)
(TextField._yscale property)

_xmouse (TextField._xmouse property)

public _xmouse : Number [read-only]
Returns the x coordinate of the mouse position relative to the text field.
Availability: ActionScript 1.0; Flash Player 6
Example
The following example creates three text fields on the Stage. The
the current position of the mouse in relation to the Stage. The
displays the current position of the mouse pointer in relation to the
following ActionScript to a FLA or AS file:
this.createTextField("mouse_txt", this.getNextHighestDepth(), 10, 10, 200,
22);
mouse_txt.border = true;
this.createTextField("textfield_txt", this.getNextHighestDepth(), 220, 10,
200, 22);
textfield_txt.border = true;
this.createTextField("my_txt", this.getNextHighestDepth(), 100, 100, 160,
120);
my_txt.border = true;
var mouseListener:Object = new Object();
mouseListener.onMouseMove = function() {
mouse_txt.text = "MOUSE ... X:" + Math.round(_xmouse) + ",\tY:" +
Math.round(_ymouse);
textfield_txt.text = "TEXTFIELD ... X:" + Math.round(my_txt._xmouse) +
",\tY:" +
Math.round(my_txt._ymouse);
method used in this example requires Flash Player
MovieClip.getNextHighestDepth()
,
_y (TextField._y property)
method.
,
_yscale
instance displays
mouse_txt
instance
textfield_txt
instance. Add the
my_txt
TextField
1225

Hide quick links:

Advertisement

Table of Contents
loading
Need help?

Need help?

Do you have a question about the FLASH 8-ACTIONSCRIPT 2.0 LANGUAGE and is the answer not in the manual?

Subscribe to Our Youtube Channel

This manual is also suitable for:

Flash 8

Table of Contents

Save PDF