Я знаю, что это довольно простой скрипт, но я получаю сообщение об ошибке с неопределенной переменной. Когда я это сделаю, подсвечивается result
прямо перед = "App Store"
. Я пытаюсь переписать эту часть сценария, но происходит то же самое. Кто-нибудь может заметить проблему?
say "Welcome, Master Daniel. It is currently"
say time string of (current date)
say "All systems are operational. Would you like to open an application?"
display dialog "Open An Application." buttons ["Mail", "App Store", "More"]
if button returned of result = "Mail" then
tell application "Mail"
activate
end tell
if button returned of result = "App Store" then
tell application "App Store"
actvate
end tell
else (* do nothing *)
end if
else (* do nothing *)
end if
if button returned of result = "More" then
display dialog "Open An Application." buttons ["Safari", "iTunes", "AppleScript"]
if button returned of result = "Safari" then
tell application "Safari"
activate
end tell
if button returned of result = "iTunes" then
tell application "iTunes"
activate
end tell
if button returned of result = "AppleScript" then
tell application "AppleScript Editor"
activate
end tell
else (* do nothing *)
end if
else (* do nothing *)
end if
else (* do nothing *)
end if
else (*do nothing*)
end if