mouse

object to control the mouse



Full emulation of mouse control in the browser
Sending mouse events to the browser (even if the program is hidden in the tray)
Full-screen mouse control
Getting the mouse coordinates in the browser
Sending mouse events to Flash




Full emulation of mouse control in the browser

click – simulate a left mouse click at a given point
double_click – simulate a double-click with the left mouse button

left_button_down – simulate left mouse button click
left_button_up – Sam: releasing the left mouse button

right_button_click – simulate right-click at a given point

right_button_down – simulate right-click
right_button_up – simulate releasing the right mouse button

move – move the mouse to the specified browser coordinates
move_to – move the mouse to the specified browser coordinates along the specified path
wheel – mouse wheel control



Sending mouse events to the browser (even if the program is hidden in the tray)

send_click – send a left mouse click at the specified point
send_double_click – send a double-click with the left mouse button at the specified point
send_touch – emulates a finger tap event at a given point

send_left_button_down – send a left mouse click
send_left_button_up – send left mouse button release

send_right_button_click – send a right-click at the specified point

send_right_button_down – send right-click
send_right_button_up – send right mouse button release

send_move – send mouse movement to the specified point
send_move_to – move the mouse to the specified browser coordinates along the specified path
send_wheel – send mouse wheel scroll

send_touch_to – move your finger to the specified browser coordinates along the specified path



Full-screen mouse control

click_to_screen – click the mouse in the screen coordinates

move_on_screen – move the mouse across the screen



Getting mouse coordinates in the browser

get_position – get the X and Y position of the mouse cursor

get_x – get the X position of the mouse cursor
get_y – get the Y position of the mouse cursor



Sending mouse events to Flash

send_click_to_flash_player – send a left-click event to flash player
send_right_click_to_flash_player – send right-click event to flash player

send_mouse_move_to_flash_player – send mouse cursor movement event to flash player

get_mouse_pos_to_flash_player – get X and Y coordinates in flash player by browser coordinates or by current cursor position in the browser