How can I add the Numbers icon to this Applescript dialog?
display dialog "There is no Numbers document open." with title "Apple Numbers Document Check" buttons {"OK"} default button "OK"
How can I add the Numbers icon to this Applescript dialog?
display dialog "There is no Numbers document open." with title "Apple Numbers Document Check" buttons {"OK"} default button "OK"
tell application "Numbers"
activate
display dialog "There is no Numbers document open" with icon note with title "Apple Numbers Document Check" buttons {"OK"} default button "OK"
end tell
Numbers must be the active application.