【问题标题】:Pressing ctrl and shift not work stands .ahk按 ctrl 和 shift 不起作用立场.ahk
【发布时间】:2014-11-30 01:19:40
【问题描述】:

我正在使用此代码。我玩计数器,按 CtrlShift .ahk 不起作用。 CrtlShift 中的游戏适用于我需要添加的内容。

capslock::Suspend
f2::ExitApp


~LButton::  ; while holding Left mouse button, usually fire
loop ; preform this and loop it while the fire button is held
{
    GetKeyState,updn, LButton, P ; check to see if its down
    if updn = U ; if its not down
        break ; break the loop 
    MouseClick, left,,, 2, 0, D ; if the loop isnt broken this
    MouseClick, left,,, 1, 0, U ; virtually send 2 downclicks then 1 up very fast
    DllCall("mouse_event", uint, 1, int, 0, int, 1, uint, 0, int, 1) ; on the down click move the mouse position this much
}

【问题讨论】:

    标签: autohotkey ctrl


    【解决方案1】:

    尝试将修改器通配符 * 添加到您的热键中,如果您按住 CtrlShift

    ,它仍然可以工作
    ~*LButton::
    

    希望对你有帮助

    【讨论】:

      猜你喜欢
      • 2013-09-08
      • 1970-01-01
      • 1970-01-01
      • 2011-08-09
      • 1970-01-01
      • 2011-09-22
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多