Invalid Numeric Value for MouseMove command

Hints, tips and tricks for newbies

Moderators: Dorian (MJT support), JRL

Post Reply
yken
Newbie
Posts: 17
Joined: Thu Jan 18, 2007 3:42 pm
Location: Turkiye

Invalid Numeric Value for MouseMove command

Post by yken » Mon May 21, 2007 9:44 am

Hi !
How can I solve the "Invalid Numeric Value for MouseMove command" problem?

Code: Select all

let>k=320,210
Wait>0.15
label>abcd
MouseMove>%k%
Wait>0.15
LClick
Wait>0.15
WaitCursorChanged>
let>k=k+0,020
goto>abcd

User avatar
Marcus Tettmar
Site Admin
Posts: 7380
Joined: Thu Sep 19, 2002 3:00 pm
Location: Dorset, UK
Contact:

Post by Marcus Tettmar » Mon May 21, 2007 10:24 am

MouseMove takes TWO parameters. You are passing ONE parameter which is a string containing a comma. You want:

Let>x=320
Let>y=210
...
MouseMove>x,y
Marcus Tettmar
http://mjtnet.com/blog/ | http://twitter.com/marcustettmar

Did you know we are now offering affordable monthly subscriptions for Macro Scheduler Standard?

yken
Newbie
Posts: 17
Joined: Thu Jan 18, 2007 3:42 pm
Location: Turkiye

Post by yken » Mon May 21, 2007 11:03 am

Thank you very much.

Post Reply
Sign up to our newsletter for free automation tips, tricks & discounts