私はアップルスクリプティングに不慣れで、以下を行う簡単なアップルスクリプトを持っています-
display dialog "Enter Your User Name:" default answer ""
set theUser to the text returned of the result
ユーザーが何も入力せずにクリックOK
した場合、次のようなチェックを行います
if theUser = "" then
display dialog "User name is mandatory" buttons {"OK"} with title "Missing parameter" with icon "stop"
set theError to button returned of the result
if theError is "OK" then quit
end if
ただし、条件をチェックするとResource wasn't found.
エラーポップアップが表示されます。if
試しtheUser is in {"",value missing}
たtheUser is missing value
ことなどはありますが、どちらもうまくいきません。ここで何が問題なのですか?