サーチ…


前書き

このトピックは、ifおよびelse文についてです。

変数= 2の場合

set var to 2

if var = 2 then
    say "Var equals 2"
end if

var1 = 4の場合、else文

set var1 to 5
//set the number to anything

if var1 = 5 then
    say "Var one equals 5"
else
 say "Var one does not equal 5"
end if

対話で返されたテキスト

display dialog "Password" default answer ""
set w to text returned of the result
if w = "Password" then
    display notification "Correct"
end if


Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow