Adobe Illustrator scripting
Write, debug, and optimize Adobe Illustrator ExtendScript automation by applying the Illustrator DOM, coordinate system, document and page item APIs, export options, and bundled JSX patterns.
When to invoke
- "Write an Illustrator JSX script."
- "Debug this Adobe Illustrator ExtendScript."
- "Automate Illustrator layers, paths, text, colors, symbols, or artboards."
- "Export Illustrator documents to PDF, SVG, PNG, or EPS with a script."
- "Batch process .ai files with JavaScript."
Expert guidance for automating Adobe Illustrator through ExtendScript (JavaScript/JSX). This skill covers the Illustrator scripting object model, all major API objects, code patterns, and best practices for writing production-quality .jsx scripts.
Bundled Assets
references/object-model-quick-reference.md: Use this as a quick lookup for the Illustrator scripting object model, common document and page item types, and related DOM concepts while writing or debugging scripts.
scripts/: Contains example Illustrator automation scripts you can use as starting points or implementation patterns for common tasks such as document manipulation, exports, batch processing, and DOM usage. Review and adapt these examples when you need working JSX patterns or want to compare behavior while debugging.
Invocation details
- Writing new Illustrator automation scripts (
.jsx or .js files)
- Debugging or fixing existing Illustrator ExtendScript code
- Manipulating documents, layers, page items, paths, text, or colors programmatically
- Batch-processing Illustrator files or generating artwork from data
- Exporting documents to various formats (PDF, SVG, PNG, EPS, etc.)
- Working with the Illustrator DOM (Application, Document, Layer, PathItem, TextFrame, etc.)
- Creating data-driven graphics using variables and datasets
- Automating print workflows with scripted print options
Prerequisites
- Adobe Illustrator CC or later installed
- Basic JavaScript knowledge (ExtendScript is ES3-based with Adobe extensions)
- Scripts are executed via File > Scripts > Other Scripts, the Scripts menu, or placed in the Startup Scripts folder
- The ExtendScript Toolkit (ESTK) or any text editor can be used to write
.jsx files
Scripting Environment
Language and File Extensions
| Language |
Extension |
Platform |
| ExtendScript/JavaScript |
.jsx, .js |
Windows, macOS |
| AppleScript |
.scpt |
macOS only |
| VBScript |
.vbs |
Windows only |
This skill focuses on ExtendScript/JavaScript as the cross-platform, most widely used option.
Executing Scripts
- Scripts menu: File > Scripts lists scripts from the application scripts folder
- Other Scripts: File > Scripts > Other Scripts to browse and run any
.jsx file
- Startup Scripts: Place scripts in the Startup Scripts folder to run automatically on launch
- Target directive: Begin scripts with
#target illustrator when running from ESTK or external tools
#targetengine directive: Use #targetengine "session" to persist variables across script executions
- External invocation: Scripts are frequently launched from outside Illustrator — by shell scripts, task runners, CI jobs, ExtendScript Toolkit (
ExtendScript Toolkit.exe -run script.jsx), or BridgeTalk messages from other Adobe apps. See External Invocation & Argument Passing.
Naming Conventions (JavaScript)
- Objects and properties use camelCase:
activeDocument, pathItems, textFrames
- The
app global references the Application object
- Collection indices are zero-based:
documents[0] is the frontmost document
- Use
typename property to identify object types at runtime
Object Model Overview
The Illustrator DOM follows a strict containment hierarchy:
Application (app)
├── activeDocument / documents[]
│ ├── layers[]
│ │ ├── pageItems[] (all artwork)
│ │ ├── pathItems[]
│ │ ├── compoundPathItems[]
│ │ ├── textFrames[]
│ │ ├── placedItems[]
│ │ ├── rasterItems[]
│ │ ├── meshItems[]
│ │ ├── pluginItems[]
│ │ ├── graphItems[]
│ │ ├── symbolItems[]
│ │ ├── nonNativeItems[]
│ │ ├── legacyTextItems[]
│ │ └── groupItems[]
│ ├── artboards[]
│ ├── views[]
│ ├── selection (array of selected items)
│ ├── swatches[], spots[], gradients[], patterns[]
│ ├── graphicStyles[], brushes[], symbols[]
│ ├── textFonts[] (via app.textFonts)
│ ├── stories[], characterStyles[], paragraphStyles[]
│ ├── variables[], datasets[]
│ └── inkList[], printOptions
├── preferences
├── printerList[]
└── textFonts[]
Top-Level Objects
- Application (
app): The root object. Provides access to documents, preferences, fonts, and printers. Key properties: activeDocument, documents, textFonts, printerList, userInteractionLevel, version.
- Document: Represents an open
.ai file. Key properties: layers, pageItems, selection, activeLayer, width, height, rulerOrigin, documentColorSpace. Key methods: saveAs(), exportFile(), close(), print().
- Layer: A drawing layer. Key properties:
pageItems, pathItems, textFrames, visible, locked, opacity, name, zOrderPosition, color.
Measurement Units and Coordinates
Units
All scripting API values use points (72 points = 1 inch). Convert other units:
| Unit |
Conversion |
| Inches |
multiply by 72 |
| Centimeters |
multiply by 28.346 |
| Millimeters |
multiply by 2.834645 |
| Picas |
multiply by 12 |
Kerning, tracking, and aki properties use em units (thousandths of an em, proportional to font size).
Coordinate System
- For scripted documents, the origin
(0,0) is at the bottom-left of the artboard
- X increases left to right; Y increases bottom to top
- The
position property of a page item is the top-left corner of its bounding box as [x, y]
- Maximum page item width/height: 16348 points
Art Item Bounds
Every page item has three bounding rectangles:
geometricBounds: Excludes stroke width [left, top, right, bottom]
visibleBounds: Includes stroke width
controlBounds: Includes control/direction points
Working with Documents
Creating and Opening
// Create a new document
var doc = app.documents.add();
// Create with a preset
var preset = new DocumentPreset();
preset.width = 612; // 8.5 inches
preset.height = 792; // 11 inches
preset.colorMode = DocumentColorSpace.CMYK;
var doc = app.documents.addDocument("Print", preset);
// Open an existing file
var fileRef = new File("/path/to/file.ai");
var doc = app.open(fileRef);
Saving and Exporting
// Save as Illustrator format
var saveOpts = new IllustratorSaveOptions();
saveOpts.compatibility = Compatibility.ILLUSTRATOR17; // CC
doc.saveAs(new File("/path/to/output.ai"), saveOpts);
// Export as PDF
var pdfOpts = new PDFSaveOptions();
pdfOpts.compatibility = PDFCompatibility.ACROBAT7;
pdfOpts.preserveEditability = false;
doc.saveAs(new File("/path/to/output.pdf"), pdfOpts);
// Export as PNG
var pngOpts = new ExportOptionsPNG24();
pngOpts.horizontalScale = 300;
pngOpts.verticalScale = 300;
pngOpts.transparency = true;
doc.exportFile(new File("/path/to/output.png"), ExportType.PNG24, pngOpts);
// Export as SVG
var svgOpts = new ExportOptionsSVG();
svgOpts.fontType = SVGFontType.OUTLINEFONT;
doc.exportFile(new File("/path/to/output.svg"), ExportType.SVG, svgOpts);
Working with Paths and Shapes
Built-in Shape Methods
The pathItems collection provides convenience methods for common shapes:
var doc = app.activeDocument;
var layer = doc.activeLayer;
// Rectangle: rectangle(top, left, width, height)
var rect = layer.pathItems.rectangle(500, 100, 200, 150);
// Rounded rectangle: roundedRectangle(top, left, width, height, hRadius, vRadius)
var rrect = layer.pathItems.roundedRectangle(500, 100, 200, 150, 20, 20);
// Ellipse: ellipse(top, left, width, height)
var oval = layer.pathItems.ellipse(400, 200, 100, 100);
// Polygon: polygon(centerX, centerY, radius, sides)
var hex = layer.pathItems.polygon(300, 300, 50, 6);
// Star: star(centerX, centerY, radius, innerRadius, points)
var star = layer.pathItems.star(300, 300, 50, 25, 5);
Extended reference
Additional detailed guidance was moved to references/extended-guide.md to keep this skill within the progressive-disclosure budget.
Progressive disclosure and bundled resources
references/object-model-quick-reference.md: quick lookup for the Illustrator object model and common DOM types.
references/extended-guide.md: extended guidance that was moved out of SKILL.md for progressive disclosure.
scripts/: example Illustrator automation scripts for document manipulation, exports, batch processing, and DOM usage.
Output template
## Illustrator scripting result
**Status:** implemented | reviewed | blocked
**Target:** `{{script_or_document}}`
### Script or patch
```javascript
#target illustrator
{{jsx_code}}
```
### Validation
- `{{execution_path}}`: pass | fail
- DOM objects used: `{{Application}}`, `{{Document}}`, `{{Layer}}`, `{{PathItem}}`, `{{TextFrame}}` as applicable
- Export or save output: `{{file_path_or_none}}`
Quality gate
1---2name: adobe-illustrator-scripting-23description: Write, debug, and optimize Adobe Illustrator automation scripts using ExtendScript (JavaScript/JSX). Use when creating or modifying scripts that manipulate documents, layers, paths, text frames, colors, symbols, artboards, or any Illustrator DOM objects. Covers the complete JavaScript object model, coordinate system, measurement units, export workflows, and scripting best practices.4---56# Adobe Illustrator scripting78Write, debug, and optimize Adobe Illustrator ExtendScript automation by applying the Illustrator DOM, coordinate system, document and page item APIs, export options, and bundled JSX patterns.910## When to invoke1112- "Write an Illustrator JSX script."13- "Debug this Adobe Illustrator ExtendScript."14- "Automate Illustrator layers, paths, text, colors, symbols, or artboards."15- "Export Illustrator documents to PDF, SVG, PNG, or EPS with a script."16- "Batch process .ai files with JavaScript."1718Expert guidance for automating Adobe Illustrator through ExtendScript (JavaScript/JSX). This skill covers the Illustrator scripting object model, all major API objects, code patterns, and best practices for writing production-quality `.jsx` scripts.1920## Bundled Assets2122- [`references/object-model-quick-reference.md`](references/object-model-quick-reference.md): Use this as a quick lookup for the Illustrator scripting object model, common document and page item types, and related DOM concepts while writing or debugging scripts.23- `scripts/`: Contains example Illustrator automation scripts you can use as starting points or implementation patterns for common tasks such as document manipulation, exports, batch processing, and DOM usage. Review and adapt these examples when you need working JSX patterns or want to compare behavior while debugging.24## Invocation details2526- Writing new Illustrator automation scripts (`.jsx` or `.js` files)27- Debugging or fixing existing Illustrator ExtendScript code28- Manipulating documents, layers, page items, paths, text, or colors programmatically29- Batch-processing Illustrator files or generating artwork from data30- Exporting documents to various formats (PDF, SVG, PNG, EPS, etc.)31- Working with the Illustrator DOM (Application, Document, Layer, PathItem, TextFrame, etc.)32- Creating data-driven graphics using variables and datasets33- Automating print workflows with scripted print options3435## Prerequisites3637- Adobe Illustrator CC or later installed38- Basic JavaScript knowledge (ExtendScript is ES3-based with Adobe extensions)39- Scripts are executed via File > Scripts > Other Scripts, the Scripts menu, or placed in the Startup Scripts folder40- The ExtendScript Toolkit (ESTK) or any text editor can be used to write `.jsx` files4142## Scripting Environment4344### Language and File Extensions4546| Language | Extension | Platform |47|---|---|---|48| ExtendScript/JavaScript | `.jsx`, `.js` | Windows, macOS |49| AppleScript | `.scpt` | macOS only |50| VBScript | `.vbs` | Windows only |5152**This skill focuses on ExtendScript/JavaScript** as the cross-platform, most widely used option.5354### Executing Scripts5556- **Scripts menu**: File > Scripts lists scripts from the application scripts folder57- **Other Scripts**: File > Scripts > Other Scripts to browse and run any `.jsx` file58- **Startup Scripts**: Place scripts in the Startup Scripts folder to run automatically on launch59- **Target directive**: Begin scripts with `#target illustrator` when running from ESTK or external tools60- **`#targetengine` directive**: Use `#targetengine "session"` to persist variables across script executions61- **External invocation**: Scripts are frequently launched from outside Illustrator — by shell scripts, task runners, CI jobs, ExtendScript Toolkit (`ExtendScript Toolkit.exe -run script.jsx`), or `BridgeTalk` messages from other Adobe apps. See [External Invocation & Argument Passing](#external-invocation--argument-passing).6263### Naming Conventions (JavaScript)6465- Objects and properties use **camelCase**: `activeDocument`, `pathItems`, `textFrames`66- The `app` global references the `Application` object67- Collection indices are **zero-based**: `documents[0]` is the frontmost document68- Use `typename` property to identify object types at runtime6970## Object Model Overview7172The Illustrator DOM follows a strict containment hierarchy:7374```75Application (app)76├── activeDocument / documents[]77│ ├── layers[]78│ │ ├── pageItems[] (all artwork)79│ │ ├── pathItems[]80│ │ ├── compoundPathItems[]81│ │ ├── textFrames[]82│ │ ├── placedItems[]83│ │ ├── rasterItems[]84│ │ ├── meshItems[]85│ │ ├── pluginItems[]86│ │ ├── graphItems[]87│ │ ├── symbolItems[]88│ │ ├── nonNativeItems[]89│ │ ├── legacyTextItems[]90│ │ └── groupItems[]91│ ├── artboards[]92│ ├── views[]93│ ├── selection (array of selected items)94│ ├── swatches[], spots[], gradients[], patterns[]95│ ├── graphicStyles[], brushes[], symbols[]96│ ├── textFonts[] (via app.textFonts)97│ ├── stories[], characterStyles[], paragraphStyles[]98│ ├── variables[], datasets[]99│ └── inkList[], printOptions100├── preferences101├── printerList[]102└── textFonts[]103```104105### Top-Level Objects106107- **Application** (`app`): The root object. Provides access to documents, preferences, fonts, and printers. Key properties: `activeDocument`, `documents`, `textFonts`, `printerList`, `userInteractionLevel`, `version`.108- **Document**: Represents an open `.ai` file. Key properties: `layers`, `pageItems`, `selection`, `activeLayer`, `width`, `height`, `rulerOrigin`, `documentColorSpace`. Key methods: `saveAs()`, `exportFile()`, `close()`, `print()`.109- **Layer**: A drawing layer. Key properties: `pageItems`, `pathItems`, `textFrames`, `visible`, `locked`, `opacity`, `name`, `zOrderPosition`, `color`.110111## Measurement Units and Coordinates112113### Units114115All scripting API values use **points** (72 points = 1 inch). Convert other units:116117| Unit | Conversion |118|---|---|119| Inches | multiply by 72 |120| Centimeters | multiply by 28.346 |121| Millimeters | multiply by 2.834645 |122| Picas | multiply by 12 |123124Kerning, tracking, and `aki` properties use **em units** (thousandths of an em, proportional to font size).125126### Coordinate System127128- For **scripted documents**, the origin `(0,0)` is at the **bottom-left** of the artboard129- X increases left to right; Y increases bottom to top130- The `position` property of a page item is the **top-left corner** of its bounding box as `[x, y]`131- Maximum page item width/height: 16348 points132133### Art Item Bounds134135Every page item has three bounding rectangles:136137- `geometricBounds`: Excludes stroke width `[left, top, right, bottom]`138- `visibleBounds`: Includes stroke width139- `controlBounds`: Includes control/direction points140141## Working with Documents142143### Creating and Opening144145```javascript146// Create a new document147var doc = app.documents.add();148149// Create with a preset150var preset = new DocumentPreset();151preset.width = 612; // 8.5 inches152preset.height = 792; // 11 inches153preset.colorMode = DocumentColorSpace.CMYK;154var doc = app.documents.addDocument("Print", preset);155156// Open an existing file157var fileRef = new File("/path/to/file.ai");158var doc = app.open(fileRef);159```160161### Saving and Exporting162163```javascript164// Save as Illustrator format165var saveOpts = new IllustratorSaveOptions();166saveOpts.compatibility = Compatibility.ILLUSTRATOR17; // CC167doc.saveAs(new File("/path/to/output.ai"), saveOpts);168169// Export as PDF170var pdfOpts = new PDFSaveOptions();171pdfOpts.compatibility = PDFCompatibility.ACROBAT7;172pdfOpts.preserveEditability = false;173doc.saveAs(new File("/path/to/output.pdf"), pdfOpts);174175// Export as PNG176var pngOpts = new ExportOptionsPNG24();177pngOpts.horizontalScale = 300;178pngOpts.verticalScale = 300;179pngOpts.transparency = true;180doc.exportFile(new File("/path/to/output.png"), ExportType.PNG24, pngOpts);181182// Export as SVG183var svgOpts = new ExportOptionsSVG();184svgOpts.fontType = SVGFontType.OUTLINEFONT;185doc.exportFile(new File("/path/to/output.svg"), ExportType.SVG, svgOpts);186```187188## Working with Paths and Shapes189190### Built-in Shape Methods191192The `pathItems` collection provides convenience methods for common shapes:193194```javascript195var doc = app.activeDocument;196var layer = doc.activeLayer;197198// Rectangle: rectangle(top, left, width, height)199var rect = layer.pathItems.rectangle(500, 100, 200, 150);200201// Rounded rectangle: roundedRectangle(top, left, width, height, hRadius, vRadius)202var rrect = layer.pathItems.roundedRectangle(500, 100, 200, 150, 20, 20);203204// Ellipse: ellipse(top, left, width, height)205var oval = layer.pathItems.ellipse(400, 200, 100, 100);206207// Polygon: polygon(centerX, centerY, radius, sides)208var hex = layer.pathItems.polygon(300, 300, 50, 6);209210// Star: star(centerX, centerY, radius, innerRadius, points)211var star = layer.pathItems.star(300, 300, 50, 25, 5);212```213## Extended reference214215Additional detailed guidance was moved to [references/extended-guide.md](references/extended-guide.md) to keep this skill within the progressive-disclosure budget.216217## Progressive disclosure and bundled resources218219- `references/object-model-quick-reference.md`: quick lookup for the Illustrator object model and common DOM types.220- `references/extended-guide.md`: extended guidance that was moved out of SKILL.md for progressive disclosure.221- `scripts/`: example Illustrator automation scripts for document manipulation, exports, batch processing, and DOM usage.222223## Output template224225````markdown226## Illustrator scripting result227228**Status:** implemented | reviewed | blocked229**Target:** `{{script_or_document}}`230231### Script or patch232```javascript233#target illustrator234{{jsx_code}}235```236237### Validation238- `{{execution_path}}`: pass | fail239- DOM objects used: `{{Application}}`, `{{Document}}`, `{{Layer}}`, `{{PathItem}}`, `{{TextFrame}}` as applicable240- Export or save output: `{{file_path_or_none}}`241````242243## Quality gate244245- [ ] The solution uses ExtendScript/JavaScript APIs that Illustrator supports, not browser-only JavaScript.246- [ ] All measurement values are converted to points where the Illustrator DOM expects points.247- [ ] Coordinates account for Illustrator's scripted-document origin and page item `position` semantics.248- [ ] Exports use the correct options object and `doc.saveAs()` or `doc.exportFile()` method.249- [ ] Bundled references or scripts are consulted when detailed API lookup or working JSX examples are needed.