I'm trying to make my mouse movements randomized within a specific box. Here's what I have so far, which is just a copy/paste from another post on these forums from 2007, in a basic loop. When I run it, I get two error messages:
" xstart+xrand ystart+yrand" - I hit "Ok", then it says:
" Error in : timing
Line: 15 - Invalid Numeric Value for MouseMove command
OK ABORT"
Getting mouse to click random pixels within bounds?
Moderators: JRL, Dorian (MJT support)
- Grovkillen
- Automation Wizard
- Posts: 1132
- Joined: Fri Aug 10, 2012 2:38 pm
- Location: Bräcke, Sweden
- Contact:
Re: Getting mouse to click random pixels within bounds?
You need to use {} when using more than one arithmetic operator in a let command.
Code: Select all
Let>SUM=1+1
//SUM=2
Let>SUM=1+1+1
//SUM=1+1+1
Let>SUM={1+1+1}
//SUM=3