Come si possono compilare dichiarazioni booleane in AppleScript?

1

Ad esempio

    on run {input, parameters}

    set Variable1 to "5"

    if (Variable1 is not "5") & (Variable1 is not "6") then

        display dialog "Variable1 is not 5 or 6"

    else

        display dialog "Variable1 is 5"

    end if


    return input
end run

Durante l'esecuzione di questo programma, ottengo l'errore:

Can’t make {false, true} into type boolean.

    
posta rubik's sphere 18.11.2016 - 06:40
fonte

1 risposta

1

Quanto segue dovrebbe gestire il test:

set Variable1 to "5"

if (Variable1 is not "5") and (Variable1 is not "6") then
    display dialog "Variable1 is not 5 or 6"
else
    display dialog "Variable1 is " & Variable1
end if
    
risposta data 18.11.2016 - 07:13
fonte

Leggi altre domande sui tag