October 27, 200619 yr Anyone knows a JS or a VBS that can mimic "Alt"+"Left Shift"+"Right Shift"?Thanks. Edited October 27, 200619 yr by bbbngowc
October 27, 200619 yr The commands to do this exist as far I know...Should probably ask in the programming (and scripting) forum.
October 28, 200619 yr 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, 200619 yr by Hamins
Create an account or sign in to comment