Is it possible to change a setting so the AppleScript Editor will open without creating a blank window with an empty file?
Any help in making this happen will be gratefully received.
Is it possible to change a setting so the AppleScript Editor will open without creating a blank window with an empty file?
Any help in making this happen will be gratefully received.
About the best you can do is leave the Library window open.
Thanks - I never thought of that. It’s not perfect, but it’s less clutter than the blank editing window.
Or you could open it by script:
tell application "AppleScript Editor"
launch -- Open without going through the intitial set-up.
activate -- Come to the front.
end tell
Ah! Excellent! I’ll create a launcher script on the desktop. Thank you!