0

I want to find the platform (Windows/Mac) of the running indesign using javascript,

eg: alert(app.name);

will result "Adobe InDesign"

like the same way, is there any way to find the platform ?

please anyone suggest a solution for this

Thank you!

user3354853
  • 179
  • 9

1 Answers1

1

try $.os, you can get os and version information.

alert($.os);
// => Macintosh OS 10.8.5

thank you

milligramme
  • 404
  • 3
  • 9