Format
MouseMove(location,control,params)
Args
location
: the turf, stat panel, grid cell, etc. containing the objectcontrol
: the name of the skin control involvedparams
: other parameters including mouse/keyboard flags, icon offsets, etc.; see mouse handling
This is called when the mouse moves over the object with no buttons pressed. When the mouse moves over for the first time, MouseEntered() is called instead.
Don’t define this unless you need it, because it generates extra communication that is otherwise avoided. Defining it on only the objects that require it reduces overhead.
See also
- DblClick proc (atom)
- MouseDown proc (atom)
- MouseDrag proc (atom)
- MouseDrop proc (atom)
- MouseEntered proc (atom)
- MouseExited proc (atom)
- MouseMove proc (client)
- MouseUp proc (atom)
- MouseWheel proc (atom)
- mouse_drag_pointer var (atom)
- mouse_drop_pointer var (atom)
- mouse_opacity var (atom)
- mouse_over_pointer var (atom)
- show_popup_menus var (client)