AppleScript中的条件语句形式如下:
if 条件 then
...
else if 条件 then
...
else
...
end if
-- Numbers compare = <= >= /=
set num1 to 10
set num2 to 20
-- if num1 is num2 then
if num1 = num2 then
display dialog "num1 == num2"
else
display dialog "num1 != num2"
end if
if num1 ≥ num2 then
1
else if num1 ≤ num2 then
2
else
3
end if
最简单的形式是:
if 条件 then ...
使用例如:
if true then set x to 1
-- error
-- if false then set y to 0 end if
关于number之间的比较符号:= , <= , >= , /=(注意不是!=)分别代表等于,小于或等于,大于或等于,不等于。
经过编译后比较符号会变成以下形式:
原书中对各种比较符号和对应的逻辑关键词列举如下:
string之间的比较使用逻辑关键词,这里就直接贴出原书的总结吧:
对于逻辑运算符用and,or,not表示与,或,非。
循环语句有几种形式,类似于OC中的for循环,while循环,for in循环等。
类似于for循环的形式如下:
repeat 重复的次数 times
...
end repeat
repeat 2 times
say "repeat"
end repeat
set repeatTimes to 10
repeat repeatTimes times
say "repeat"
end repeat
另外一种类似for循环的形式为:
repeat with 计数变量 from 初始值 to 目标值 by 递增数
...
end repeat
使用举例:
repeat with counter from 1 to 3
display dialog counter
end repeat
repeat with counter from 0 to 10 by 2
display dialog counter
end repeat
类似于while循环的形式1:
repeat while 条件
...
end repeat
set counter to 0
repeat while counter ≠ 10
display dialog counter as string
set counter to counter + 2
end repeat
形式2:
repeat until 条件
...
end repeat
set counter to 0
repeat until counter = 10
display dialog counter as string
set counter to counter + 2
end repeat
当然你可能猜到了,还有类似于for in循环的语句,可以用来遍历列表。形式如下:
repeat with 单个元素 in 集合
...
end repeat
set aList to {1, 2, 3}
repeat with anItem in aList
display dialog anItem as string
end repeat
有了条件语句和循环语句,可以按我们的逻辑思维去写代码了。
更多详细内容请参考《AppleScript for Absolute Starters》一书(中文名为《苹果脚本跟我学》)。