Autohotkey - Clipboard

O conteúdo da área de transferência será sempre vazio, porque não dá tempo do sistema operacional copiar o contéudo, antes do if

The contents of the clipboard will always be empty, because the operating system does not have time to copy the contents, before the if

Errado (Wrong)

A_Clipboard := ""
Send "^c"
if(IsInteger(A_Clipboard)) ; Clipboard content will always be empty


Correto (Correct)


A_Clipboard := ""
Send "^c"
ClipWait
if(IsInteger(A_Clipboard))


Correto (Correct)

Send "^c"
if(IsInteger(A_Clipboard))










Comentários

Postagens mais visitadas deste blog

VR Box 2.0 - QR Code

Jogo 60 seconds!