Add Apple Numbers Icon To Display Dialog

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.

1 Like