razor999 Posted April 2, 2011 Share Posted April 2, 2011 how to combination send key? sample key LSHIFT + keynumb1 incorrect code While 1 Send("{LSHIFT}") Send("{NUMPAD1}") Sleep(1000) Send("{LSHIFT}") Send("{NUMPAD2}") Sleep(1000) Wend Wend or incorrect code While 1 Send("{LSHIFT}{NUMPAD1}") Sleep(1000) Send("{LSHIFT}{NUMPAD2}") Sleep(1000) Wend please help me Link to comment Share on other sites More sharing options...
bwochinski Posted April 2, 2011 Share Posted April 2, 2011 The help entry "Send Key List" talks about the usage of "down" and "up" key modifiers. While 1 Send("{LSHIFT down}{NUMPAD1}{LSHIFT up}") Sleep(1000) Send("{LSHIFT down}{NUMPAD2}{LSHIFT up}") Sleep(1000) Wend Link to comment Share on other sites More sharing options...
razor999 Posted April 2, 2011 Author Share Posted April 2, 2011 The help entry "Send Key List" talks about the usage of "down" and "up" key modifiers. While 1 Send("{LSHIFT down}{NUMPAD1}{LSHIFT up}") Sleep(1000) Send("{LSHIFT down}{NUMPAD2}{LSHIFT up}") Sleep(1000) Wend wow fast respond, thanks for help me Link to comment Share on other sites More sharing options...
bwochinski Posted April 2, 2011 Share Posted April 2, 2011 No problem And welcome to the forums! Link to comment Share on other sites More sharing options...
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