“ExtendScript Framework for InDesign Ninjas.” | Overview | What IdExtenso Is Not | Key Points | Getting Started | Quick Example
IdExtenso is a work-in-progress API dedicated to ExtendScript developers looking for a robust solution in the particular field of InDesign scripting. Think of it as a toolbox based on efficient and growing building blocks.
Do you need a clean JSON formatter that really supports ExtendScript oddities and InDesign DOM objects? Would you like to trace your debug messages in a log file the easy way? And always making sure that the environment (operating system, InDesign version, locale, script engine) is properly addressed? IdExtenso natively provides these features as they are parts of its core structure.
The framework is designed to support ExtendScript from version 3.92
to 4.5
and InDesign from v.6.0
(CS4) to 15.x
(CC2020) in both Mac OS and Windows platforms. It fixes, improves or extends a number of built-in functionalities. For example, myString.toSource()
can save 30% of the original result length, $.global.parseInt()
complies with ECMAScript's latest specification, RegExp.prototype["=="]
is implemented so that you can compare regexes using ==
, and so much more.
IdExtenso deals with ExtendScript and wants to make InDesign easier to automate as a primary goal. It does not offer a bunch of JS sugars easily findable in other distributions. So it does not pretend to form a library in the narrow sense. It is about building a complete workspace. It wouldn't make sense to use it in small projects that don't involve features like localization, performance testing, user interface, modularity, compatibility, settings management.
-
As fast and optimized as we can.
-
Light-weight and maintaining the
[[global]]
scope as clean as possible. -
Smart support of persistent engines created via the
#targetengine
directive. -
Still works fine in a
JSXBIN
export of your final project. -
Fixes various compatibility issues regarding ExtendScript and/or InDesign DOM versions.
-
Offers a growing number of extra modules that you can plug at wish through
#include
. Among the available modules present in the/etc
branch, give a look at: Yalt (localization engine), Web (HTTP getter), Settings (multiscope settings manager), MD5, DateFormat, ByteStream, Unit, etc.
Warning. — Use a true EDI (SublimeText, UltraEdit, etc.) rather than “ExtendScript ToolKit”. ESTK is not suitable for IdExtenso.
-
Download the latest distribution (ZIP file) and unzip the whole structure at a location available to the
Scripts Panel
folder. You must have at least$$.jsxinc
(the “entry point”) and the/core
subfolder. The/etc
folder is optional but it contains modules of great value so I recommend you to keep it at hand. -
Either create a sample script (e.g.
myTest.jsx
) or simply open one of those provided in/tests
. -
The script must contain a directive
#include 'path/to/$$.jsxinc'
(which includes the framework.) A global reference$$
is then available from which you can access any point of the API.
Note. — If InDesign is not involved in your project, you may
#include
the alternate entry point$$.estk.jsxinc
which is intended to make IdExtenso available in the ESTK context.
-
If relevant, include any additional module(s) you may need—e.g.
#include etc/Web.jsxlib
—so that$$.Web
will be added too. (All methods and properties are documented in their respective module.) -
After your
#include
directives, DO NOT FORGET to invoke$$.load()
.
Congratulations! You're now ready to use IdExtenso in your script!
Tip. — Use
$$.help()
at any point of your code to discover and browse the API of the included modules (including core features.)
This basic snippet illustrates how to use some core modules, namely Log, JSON, and File. Use it as a template to familiarize yourself with the framework.
#target 'indesign'
// IdExtenso entry point.
// ---
#include 'path/to/$$.jsxinc'
// ---
// Additional includes are possible here.
// e.g: #include 'path/to/etc/Yalt.jsxlib'
// ---
// Load the framework.
// ---
$$.load('TRACE');
// Your script goes here.
// ======================
try
{
$$.Log.chrono().trace("Processing some huge JSON task...");
var json = $$.JSON(app.properties.activeDocument,1);
$$.Log.trace(__("JSON done in %1 ms.",+$$.Log.chrono));
alert( "The result should show up in a temporary file..." );
$$.File.temp(json,'tmp',1/*SHOW*/);
}
catch(e)
{
$$.receiveError(e);
}
// ======================
// Unload the framework.
// ---
$$.unload();
Note. — The global identifier
$$
refers to IdExtenso's root API. You can reach all public features—including those available in the installed modules—from that identifier. For example, use$$.File.writeUTF8()
to invoke thewriteUTF8
method of the File module.
Other ready-to-use scripts are available in the /tests
directory.