【问题标题】:AutoHoyKey: Send text when press WINKEY + LAutoHotKey:按 WINKEY + L 时发送文本
【发布时间】:2016-04-18 07:35:18
【问题描述】:

当我按下这个组合时:

WINKEY + L

我想这样写:

LIKE '%%'

我尝试这样做,但不起作用:

<#l::
Send , (LIKE '%%')

我接受建议,谢谢。

【问题讨论】:

    标签: string windows-10 autohotkey


    【解决方案1】:

    Send 等命令中不需要任何大括号 ()

    而且,%在AutoHotkey中有特殊含义,见https://autohotkey.com/docs/Scripts.htm#esc

    而且你应该始终以return 结束你的热键、标签、热字串以表示它的结束。

    用途:

    <#l::
    Send, LIKE'`%`%'
    return
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2016-12-01
      • 1970-01-01
      • 2015-02-08
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多