├── .gitignore ├── README.md ├── img ├── 01-hello-world.png ├── atom-setup.png ├── extendscript-setup.png └── vscode-setup.png ├── lib ├── color.js ├── doc.js ├── files.js ├── geo.js ├── main.js ├── units.js └── utils.js └── scripts ├── 01-hello-world.jsx ├── 02-new-document.jsx ├── 03-new-document-RGB.jsx ├── 04-new-document-set-origin.jsx ├── 05-new-document-preset.jsx ├── 06-new-document-preset-units-mm.jsx ├── 07-primitives.jsx ├── 08-save-files.jsx ├── 09-make-document.jsx ├── 10-preprocessor-directives.jsx ├── 11-layers.jsx ├── 12-document-preferences.jsx └── 13-document-preferences-improved.jsx /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjduran/adobe-scripting/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjduran/adobe-scripting/HEAD/README.md -------------------------------------------------------------------------------- /img/01-hello-world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjduran/adobe-scripting/HEAD/img/01-hello-world.png -------------------------------------------------------------------------------- /img/atom-setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjduran/adobe-scripting/HEAD/img/atom-setup.png -------------------------------------------------------------------------------- /img/extendscript-setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjduran/adobe-scripting/HEAD/img/extendscript-setup.png -------------------------------------------------------------------------------- /img/vscode-setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjduran/adobe-scripting/HEAD/img/vscode-setup.png -------------------------------------------------------------------------------- /lib/color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjduran/adobe-scripting/HEAD/lib/color.js -------------------------------------------------------------------------------- /lib/doc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjduran/adobe-scripting/HEAD/lib/doc.js -------------------------------------------------------------------------------- /lib/files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjduran/adobe-scripting/HEAD/lib/files.js -------------------------------------------------------------------------------- /lib/geo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjduran/adobe-scripting/HEAD/lib/geo.js -------------------------------------------------------------------------------- /lib/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjduran/adobe-scripting/HEAD/lib/main.js -------------------------------------------------------------------------------- /lib/units.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjduran/adobe-scripting/HEAD/lib/units.js -------------------------------------------------------------------------------- /lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjduran/adobe-scripting/HEAD/lib/utils.js -------------------------------------------------------------------------------- /scripts/01-hello-world.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjduran/adobe-scripting/HEAD/scripts/01-hello-world.jsx -------------------------------------------------------------------------------- /scripts/02-new-document.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjduran/adobe-scripting/HEAD/scripts/02-new-document.jsx -------------------------------------------------------------------------------- /scripts/03-new-document-RGB.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjduran/adobe-scripting/HEAD/scripts/03-new-document-RGB.jsx -------------------------------------------------------------------------------- /scripts/04-new-document-set-origin.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjduran/adobe-scripting/HEAD/scripts/04-new-document-set-origin.jsx -------------------------------------------------------------------------------- /scripts/05-new-document-preset.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjduran/adobe-scripting/HEAD/scripts/05-new-document-preset.jsx -------------------------------------------------------------------------------- /scripts/06-new-document-preset-units-mm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjduran/adobe-scripting/HEAD/scripts/06-new-document-preset-units-mm.jsx -------------------------------------------------------------------------------- /scripts/07-primitives.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjduran/adobe-scripting/HEAD/scripts/07-primitives.jsx -------------------------------------------------------------------------------- /scripts/08-save-files.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjduran/adobe-scripting/HEAD/scripts/08-save-files.jsx -------------------------------------------------------------------------------- /scripts/09-make-document.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjduran/adobe-scripting/HEAD/scripts/09-make-document.jsx -------------------------------------------------------------------------------- /scripts/10-preprocessor-directives.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjduran/adobe-scripting/HEAD/scripts/10-preprocessor-directives.jsx -------------------------------------------------------------------------------- /scripts/11-layers.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjduran/adobe-scripting/HEAD/scripts/11-layers.jsx -------------------------------------------------------------------------------- /scripts/12-document-preferences.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjduran/adobe-scripting/HEAD/scripts/12-document-preferences.jsx -------------------------------------------------------------------------------- /scripts/13-document-preferences-improved.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjduran/adobe-scripting/HEAD/scripts/13-document-preferences-improved.jsx --------------------------------------------------------------------------------