bbbngowc Posted October 27, 2006 Posted October 27, 2006 (edited) Anyone knows a JS or a VBS that can mimic "Alt"+"Left Shift"+"Right Shift"?Thanks. Edited October 27, 2006 by bbbngowc
LLXX Posted October 27, 2006 Posted October 27, 2006 The commands to do this exist as far I know...Should probably ask in the programming (and scripting) forum.
Hamins Posted October 28, 2006 Posted October 28, 2006 (edited) Hi bbbngowc,Try the following method in VBScript : -WshShell.Sendkeys "{keyname}"For example to specify CTRL and C, the code would be object.SendKeys "^C" and for SHIFT F5 object.SendKeys "+{F5}". To specify multiple combination sets such as ALT A Z, you use parentheses, for example, object.SendKeys "%(AZ)". Edited October 28, 2006 by Hamins
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