>
> I know it would help if I new programming...
The above won't make sense unless you understand sripting. PowerPro
comes with a tutorial written for people new to programming. See the
Tutorial entry in the Start Menu submenu for PowerPro.
> ...for example
>
> random_vertical_mouse_50.powerpro
>
Put the script from my note in a file random_both.powerpro in the
script subfolder of your powerpro folder. Then create a hot key with
the command
.random_both
as the only text in the command entry controls for the hot key.
Activiating the hot key moves mouse random amount +-25 in both
directions. Change 50 and 25 for other values.
To move just in x, replace last line by
win.mouse("ab "++xnew""+" "++ymouse)
To move just in y, replace last line by
win.mouse("ab "++xmouse""+" "++ynew)
Create a separate file for each case and a separate hot key
referencing the file as above. Don't forget the . at the start of
the file name in the command for the hot key and do _not_ put
the .powerpro in the command for the hot key.
Please do review the scripting tutorial and the the help on functions
(for random and xmouse, ymouse).