Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Quick Java Script for indesign question.

Advisor ,
May 12, 2016 May 12, 2016

Will normal java code work in indesign?  For example if i find a good bit of code i want to incorporate in indesign scripts?

TOPICS
Scripting
408
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

LEGEND , May 12, 2016 May 12, 2016

Yes, with the following exceptions:

1. No browser-specific code. (i.e. no document,window, etc.)

2. No modern Javascript features will work. ExtendScript uses an older version of SpiderMonkey under the hood. Stick to ECMAScript 4.

It's worth noting that ExtendScript supports E4X, so XML is a first-class citizen.

Translate
LEGEND ,
May 12, 2016 May 12, 2016

Yes, with the following exceptions:

1. No browser-specific code. (i.e. no document,window, etc.)

2. No modern Javascript features will work. ExtendScript uses an older version of SpiderMonkey under the hood. Stick to ECMAScript 4.

It's worth noting that ExtendScript supports E4X, so XML is a first-class citizen.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Advisor ,
May 12, 2016 May 12, 2016
LATEST

Thanks for your quick reply.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines