How to get the Scripts folder in the application bundle?

I am really new to AppleScript, so this is the real basic question, but I could not find the answer or example in the AppleScript editor. leadership.

I am making a simple script that I will link as an application file, in the AppleScript editor I see an application Bundle Contentsin which I have an icon, description file and folder Scripts. How to access this content from a script and how to access scripts inside scripts folder?

+5
source share
1 answer

If you save the script as a script package or as an application package, you can use a command path to resourcelike:

path to resource "description.rtfd"

. .

+8

All Articles