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
Postar um comentário