Como posso preencher previamente um prompt do AutoHotkey InputBox?

1

Estou executando o AutoHotkey 1.0.48.05 no Windows 7.

Eu tenho este script:

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

Então, se eu digitar sw{Enter} no PowerShell (ou em qualquer lugar), serei solicitado por uma caixa de texto. Atualmente, essa caixa de texto está em branco.

Como posso preenchê-lo com uma string específica?

    
por Ryan 25.09.2012 / 22:40

1 resposta

1

Sintaxe para Inputbox :

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

Então, o que você quer é adicionar um valor padrão:

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

Tags