- Overview
- Adc
- Artificial Intelligence
- Audio
- Camera
- Digital
- Games
- General
- Gps
- Graphs
- Hbridge
- I2c
- Infrared Distance
-
Misc
- Admin Toolbox
- Advanced Twitter Recognition
- Depthsensor
- Display Popup
- Ez430-Chronos Wrist Watch
- EZMQTT Broker
- EZMQTT Client
- Floor Map
- GPS
- IFTTT Sender
- Joystick
- Kinect Body Control
- Miscellaneous Utility Plugin
- MP3 Trigger
- Myo Gesture Armband
- Neopixel Blaster
- Neopixel Ring
- Nest
- Remote Mouse
- Roll Pitch Yaw
- Sensor Stream Server
- Serial Toolbox
- SMTP Client
- Twitter Recognition
- Video Player
- Virtual Robot
- Wii Remote
- Mobile
- Navigation
- Pwm
- Rafiki
- Scripting
- Servo
- Third Party Robots
- Touch Tablet
- Ultrasonic Distance
- Virtual Reality

How To Download and Use This Control
- Make sure you have the latest version of EZ-Builder installed.
- Select the Install button below to download the file.
- Double click the downloaded file to open installer.
- The installer will add this control to EZ-Builder.
Control your mouse with this control from Ez-script. Be creative and use your voice, camera control or switches on the EZ-B v4 to move the mouse cursor on your PC. Use the ControlCommand() for this control to move the mouse with EZ-Script.
Here is an example of DJ Sures controlling the mouse cursor with the position of his face in the camera. The project file for this example is available here: FaceMouse.EZB
Example EZ-Script
The Cheat Sheet will display all available ControlCommand() for this control. Syntax is as follows...
This will move the mouse cursor down 10 pixels.
Code:
ControlCommand("Remote Mouse", MoveDown, 10)
This will move the mouse cursor to the absolute position 240 x 300 on the screen.
Code:
ControlCommand("Remote Mouse", SetAbsolute, 240, 300)
Or you may wish to control the EZ-Builder window state between Maximized, Minimized, Restore or window position. Run this fun example to watch EZ-Builder change state and run across the screen.
Code:
ControlCommand("Remote Mouse", WindowMinimize)
sleep(2000)
ControlCommand("Remote Mouse", WindowMaximize)
sleep(2000)
ControlCommand("Remote Mouse", WindowRestore)
sleep(2000)
repeat ($x, 10, 500, 20)
ControlCommand("Remote Mouse", WindowLocation, $x, 50, 500, 500)
sleep(100)
endrepeat
sleep(2000)
ControlCommand("Remote Mouse", WindowMaximize)
Source Code
Source code is here: RemoteMouse.zip
Changes:
Version 0
- released
Version 1
- displayed current mouse coordinate position as requested: http://www.ez-robot.com/Community/Forum/Thread?threadId=8530
Similar Behavior Controls

Depthsensor
This EZ-Builder plugin enables customize angle calculations, publish the calculations to EZ-Script variables, and control...

Admin Toolbox
This plugin add the possibility to hide, disable input controls a full screen/demo mode.

Advanced Twitter Recognition
Retrieve twitter tweets and process them to have your robot do cool stuff via twitter posts.