Não é possível enviar a entrada corretamente no AHK

0

Eu tento enviar a entrada de um nome de arquivo no script AHK, mas não consigo obter a entrada correta. O AHK não está enviando todo o texto que eu quero enviar. Aqui está o meu código.

SendInput, 867_CCM.xls

Mas o AHK envia apenas CCM.xls

Por favor, deixe-me saber qual erro eu estou cometendo.

    
por Dragonborn 21.09.2015 / 04:19

1 resposta

1

Experimente SendInput,{Raw}867_CCM.xls

{Raw}

[v1.0.43+] Sends the keystrokes exactly as they appear rather than translating {Enter} to an ENTER keystroke, ^c to Control-C, etc. Although the string {Raw} need not occur at the beginning of the string, once specified, it stays in effect for the remainder of the string.

    
por 21.09.2015 / 05:43