我在 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