Useful Global Macros

I call this set of macros my mouse nudge macros. They allow you to move the mouse pointer by simply "nudging " in a particular direction. For example, "Nudge Left 10 ", will move the mouse pointer 10 pixels to the left.

These commands are very useful when trying to position the mouse pointer over a link within Internet Explorer, or even Netscape for the matter.

switch-to-vocabulary /create /module System System
switch-to-group /create System
switch-to-group /create "Global Commands"
switch-to-group /create System
switch-to-group /create "Always Active"
switch-to-group /create "Global Commands"
add-word "[Nudge Down ]" /script "SetMousePosition 2,0,VAL(_1_to_99_1)" /nsc
add-word "[Nudge Left ]" /script "SetMousePosition 2,-VAL(_1_to_99_1),0" /nsc
add-word "[Nudge Lower Left ]" /script "SetMousePosition 2,-VAL(_1_to_99_1),VAL(_1_to_99_1)" /nsc
add-word "[Nudge Lower Right ]" /script "SetMousePosition 2,VAL(_1_to_99_1),VAL(_1_to_99_1)" /nsc
add-word "[Nudge Right ]" /script "SetMousePosition 2,VAL(_1_to_99_1),0" /nsc
add-word "[Nudge Up ]" /script "SetMousePosition 2,0,-VAL(_1_to_99_1)" /nsc
add-word "[Nudge Upper Left ]" /script "SetMousePosition 2,-VAL(_1_to_99_1),-VAL(_1_to_99_1)" /nsc
add-word "[Nudge Upper Right ]" /script "SetMousePosition 2,VAL(_1_to_99_1),-VAL(_1_to_99_1)" /nsc