Hello World Error
I'm learning AppleScript and my first program is a Hello World(of cou开发者_运维技巧rse!):
display dialog "Hello World"
But when I try to run this I got the error:
The result of a numeric operation was too large.
- Why this?
- How I can solve it?
See: The Ultimate Beginner’s Guide To AppleScript – Mac.AppStorm
tell application "Finder"
display dialog "Hello World"
end tell
精彩评论