热键问题,如果按A热键,希望输出ABC怎么实现?【已解决】
本帖最后由 拉风晓晓 于 2011-1-4 13:25 编辑热键问题,如果按A热键,希望输出ABC怎么实现? #include <Misc.au3>
$dll = DllOpen("user32.dll")
While 1
Sleep (100 )
If _IsPressed("41", $dll) Then
Send ( "bc" )
EndIf
WEnd
DllClose($dll)
谢谢qop1830 分享,不错的示例 非常好,又学到了 hotstring 推荐用ahk
页:
[1]