ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Extend​Script

by seblavoie ALL

A plugin to help with ExtendScript development workflow.

Details

Installs

  • Total 2K
  • Win 1K
  • Mac 1K
  • Linux 78
Apr 23 Apr 22 Apr 21 Apr 20 Apr 19 Apr 18 Apr 17 Apr 16 Apr 15 Apr 14 Apr 13 Apr 12 Apr 11 Apr 10 Apr 9 Apr 8 Apr 7 Apr 6 Apr 5 Apr 4 Apr 3 Apr 2 Apr 1 Mar 31 Mar 30 Mar 29 Mar 28 Mar 27 Mar 26 Mar 25 Mar 24 Mar 23 Mar 22 Mar 21 Mar 20 Mar 19 Mar 18 Mar 17 Mar 16 Mar 15 Mar 14 Mar 13 Mar 12 Mar 11 Mar 10
Windows 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Mac 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

Deprecated

This package is deprecated and I would suggest using Adobe's official Extendscript Debugger instead.

ExtendScript for Sublime Text

A plugin to help with ExtendScript development workflow. It's really basic but it might be helpful. Feel free to contribute!

What it does?

Copies the current script to the desired software's script folder

Use ⌘+⇧+P and chose between the options.

  • ExtendScript: Build for After Effects
  • ExtendScript: Build for Photoshop
  • ExtendScript: Build for Illustrator
  • ExtendScript: Build for InDesign

#include compilation

#include statements are useful when developping but not as much when you want to ship a single .jsx file. This will replace #include line with the actual code.

Look at ExtendScript.sublime-settings if you want to turn this off.

Automatically sets debug to false

You'll probably want to have a debug variable or property somewhere to help you test your code with the ExtendScript Toolkit. You may also want it turned off when testing it from within your application UI.

Installation

Sublime Package Control

The preferred method of installation is via Sublime Package Control.

  1. Install Sublime Package Control
  2. From inside Sublime Text 2, open Package Control's Command Pallet: Ctrl+Shift+P (Windows, Linux) or ++P on Mac.
  3. Type install package and hit Return. A list of available packages will be displayed.
  4. Type ExtendScript and hit Return. The package will be downloaded to the appropriate directory.
  5. Restart Sublime Text 2 to complete installation.

Manual Installation

  1. Download or clone this repository to a directory ExtendScript in the Sublime Text 2 Packages directory for your platform:
    • Mac: git clone https://github.com/seblavoie/sublime-extendscript.git ~/Library/Application\ Support/Sublime\ Text\ 2/Packages/ExtendScript
    • Windows: git clone https://github.com/seblavoie/sublime-extendscript.git %APPDATA%\Sublime/ Text/ 2/\ExtendScript
    • Linux: git clone https://github.com/seblavoie/sublime-extendscript.git ~/.Sublime\ Text\ 2/Packages/ExtendScript
  2. Restart Sublime Text 2 to complete installation.

Todo

  • Add automatic software detection using #target.
  • Add AppleScript to open and run the script from the ExtendScript Toolkit.
  • Add CoffeeScript support.

Collaborators

Thanks to @ZombieHippie for his shot at turning my previous shell build system into a real Sublime Text python plugin.