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