Shift键autohotkey

问题描述:

我的主要问题是我的汽车钥匙似乎在使用我的Shift关键,当我问它只使用我分配的热键。Shift键autohotkey

快,我在玩游戏,需要持有有时与我就把剧本,似乎是按我的E键是触发我0.5秒,最高移位关键。

这里是我的脚本:

SendMode Input 
{ 
~é:: 
~+é:: 
Send {3 down}{4 down}{5 down}{6 down}{3 up}{4 up}{5 up}{6 up} 
return 
} 

顺便说一句,甚至当我删除它的反应,就好像我是按在游戏中的行~+é::,。 我真的不明白,因为我是一种新的,有些时候我正在尝试一切,所以我在这里寻求一些帮助。

预先感谢阅读我,

卢卡斯

+0

你要什么你的脚本吗? – MCL 2014-09-26 06:38:44

+0

当我按下我的键盘上的“é”键时,我希望它能像我按下3456 /“'( - – lukas 2014-09-26 11:11:31

像这样的事情?

~é:: ;because of the ~ the key will send itself and thus output: é3456 
    SendInput, 3456 
Return 

或可能:

é:: ;without the ~ the key doesn't send itself anymore and thus output: "'(- 
    SendInput, "'(- 
Return