Hello,
I'm learning AppleScript and my first program is a Hello World(of course!):
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?
Hello,
I'm learning AppleScript and my first program is a Hello World(of course!):
display dialog "Hello World"
But when I try to run this I got the error:
The result of a numeric operation was too large.
See: The Ultimate Beginner’s Guide To AppleScript – Mac.AppStorm
tell application "Finder"
display dialog "Hello World"
end tell