我正在尝试在AppleScriptObjC中构建一个if语句,用于检查窗口的标题是否与某个字符串匹配,但我不确定语法是否正确。
例如:
theWindow's setTitle_("testing")
if theWindow's title = "testing" then
do some stuff
else
do some other stuff
end if
这显然不是正确的语法,但希望它能够证明我所追求的目标。谢谢你的帮助!
答案 0 :(得分:1)
我的一位朋友解决了这个问题:
theWindow's setTitle_("testing")
set testTitle to theWindow's |title|() as string
if testTitle = "Testing" then
do some stuff
else
do some other stuff
end if