如何预填充 AutoHotkey InputBox 提示?

如何预填充 AutoHotkey InputBox 提示?

我在 Windows 7 上运行 AutoHotkey 1.0.48.05。

我有这个脚本:

::sw::
    InputBox, providedString, SVN Switch, Switch the current directory to where?
    if NOT ErrorLevel
    {
        Send svn switch %providedString%{Enter}
    }
Return

因此,如果我sw{Enter}在 PowerShell(或任何地方)中输入内容,就会出现一个文本框提示。目前该文本框是空白的。

我怎样才能用特定的字符串预先填充它?

答案1

语法Inputbox

InputBox, OutputVar [, Title, Prompt, HIDE, Width, Height, X, Y, Font, Timeout, Default]

因此您需要添加一个默认值:

::sw::
    InputBox, providedString, SVN Switch, Switch the current directory to where?,,,,,,,,<a particular string>
    if NOT ErrorLevel
    {
        Send svn switch %providedString%{Enter}
    }
Return

相关内容