Send keys not working for certain computers
namtopia
![]()
- Joined: Feb 11, 2011
- Posts: 1
I have a winautomation script that sends keys to a game program running on 3 different computers (Win7 and XP). The keys are successfully sent only to 2 of the 3 machines running the same program and I have tried both manually configuring the keys into job designer and recording the macros.
The computers that this function works on are running Win7 and XP. The problem machine is running Win7 and is a considerably newer computer as well as higher performance (2011 Alienware desktop).
The keys sent are:
{LControlKey}{(F)}
{LMenu}{(C)}
{LMenu}{(P)}
{Escape}
What do you think is causing this issue? I'll be happy to provide more information if its needed.
Thanks in advance!
Samantha
![]()
- Joined: Apr 23, 2010
- Posts: 2330
voltr4nz
![]()
- Joined: Mar 16, 2011
- Posts: 1
Adding some delay also not work for "System Properties" in my Win7. Any other idea?
kimc
![]()
- Joined: Jan 13, 2011
- Posts: 298
Your examples were:
{LControlKey}{(F)}
{LMenu}{(C)}
{LMenu}{(P)}
{Escape}
It is my understanding that the parentheses have to be outside of the braces..for example:
{LControlKey{({F})
{LMenu}({C})
You have them the other way in your example.
I had a similar problem with similar keys; when I changed the braces and parentheses around to the correct order, everything worked great.
Good luck.