0
我想在Applescript中創建一個子例程。但是,我收到一個語法錯誤,說「預計」錯誤,但找到了標識符「。我相信它是因爲我在try塊裏面做這個。有沒有解決的辦法?在try塊中創建一個applescript子例程
try
on prompt()
-- Do Something
end prompt
on error errTxt number errNum -- errTxt and errNum are returned from system
display dialog errTxt & return & errNum
在try ...裏面定義一個子程序是錯誤的... end block。這就是爲什麼它不能在腳本編輯器中編譯。 –