Meastro Posted July 5, 2006 Posted July 5, 2006 Hi, im trying to send the numpad up key (known as {numpad8}) so that it moves the mouse cursor up when i have MouseKeys on( the program in assesability obtions in windows xp). Instead of moving the mouse, autoit sends an 8. How do i send the numpad up key to fix this problem.
gamerman2360 Posted July 5, 2006 Posted July 5, 2006 MouseMove()? At least it's the simple way, lol...$moveY = -50; pixles $pos = MouseGetPos() MouseMove($pos[0], $pos[1] + $moveY)
Moderators SmOke_N Posted July 5, 2006 Moderators Posted July 5, 2006 Hi, im trying to send the numpad up key (known as {numpad8}) so that it moves the mouse cursor up when i have MouseKeys on( the program in assesability obtions in windows xp). Instead of moving the mouse, autoit sends an 8. How do i send the numpad up key to fix this problem.http://www.autoitscript.com/forum/index.ph...st&p=191117It worked in my example here. Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now