How do I debug AppleScript?

The latest versions of xcode will let you create an AppleScript application but breakpoints in applescript don’t work since Apple has discontinued support for AppleScript debugging in xcode.

Fallback: for simple “printf style” debugging you could use:

display dialog "my variable: " & myVar

Leave a Comment