I know this is a quite simple script, but I keep getting an error message about an undefined variable. When I do, the result that is right before = "App Store" gets highlighted. I have tries rewriting that part of the script, but the same thing keeps happening. Can anybody notice a problem?
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