ray_mosley
10 years agoFrequent Contributor
How to enter special key sequence in VBScript
I have a window object that pops up another window whenever CTRL+Shift+F12 is entered. This works as designed manually, but I cannot find the magic sequence to reporduce it from my code. Any sugges...
- 10 years ago
That was my first attempt several days ago - it recorded but did not play back.
What I finally got to work today was:
obj.Keys("[Hold]^+[F12]{Release]") ' Press Ctrl + Shift + F12
Now I am on to the next problem...