These forums are now Read Only. If you have an Acrobat question, ask questions and get help from one of our experts.

trustedFunction in Acrobat 8 MAc

olu
Registered: Aug 5 2008
Posts: 5

Does anyone know what folder a trustFunction belongs in adobe 8 on the MAC OS X platform?

Thanks.

George_Johnson
Expert
Registered: Jul 6 2008
Posts: 1876
In the JavaScript console, execute the following to get the locations of the application JavaScript folder and the user JavaScript folder, respectively.

// for App folder scripts
app.getPath("app", "javascript");

// for User folder scripts
app.getPath("user", "javascript");

You can place the code file in either location, depending on whether you want it available to all users or just certain ones.

George