jsTree e jQuery

Pesquisar este blog

Contribua

Te ajudei? Quer retribuir? PIX de qualquer quantia.

Autohotkey Testar se conteúdo do clipboard é inteiro

 #Requires AutoHotkey v2.0
#SingleInstance force

<^>!f:: ;ALT DIREITO + F
{
    A_Clipboard := ""  ; Start off empty to allow ClipWait to detect when the text has arrived.
    Send "^c"
    ;ClipWait  ; Wait for the clipboard to contain text.

    if(IsInteger(A_Clipboard))
        MsgBox "É inteiro!"
    else
        MsgBox "Não é inteiro!"
}

Nenhum comentário:

Postar um comentário