Hints, tips and tricks for newbies
Moderators: Dorian (MJT support), JRL
-
yken
- Newbie
- Posts: 17
- Joined: Thu Jan 18, 2007 3:42 pm
- Location: Turkiye
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
-
Marcus Tettmar
- Site Admin
- Posts: 7395
- 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
-
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.