美文网首页AutoHotKey
单、双、三击示例

单、双、三击示例

作者: sixtyone | 来源:发表于2016-07-12 12:41 被阅读29次

    ;单、双、三击示例--热键P

    p::
    keywait,p,T0.2
    if errorlevel
    {
    msgbox,超时
    return
    }
    keywait,p,D T0.13
    if errorlevel
    {
    msgbox,单击
    return
    }
    keywait,p,T0.07
    if errorlevel
    {
    msgbox,双击
    return
    }
    keywait,p,D T0.13
    if errorlevel
    {
    msgbox,双击
    return
    }
    MsgBox,三击
    return

    相关文章

      网友评论

        本文标题:单、双、三击示例

        本文链接:https://www.haomeiwen.com/subject/erzjjttx.html