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

관련 정보