You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+15-7
Original file line number
Diff line number
Diff line change
@@ -7,11 +7,14 @@ Script runner for Adobe applications right from VSCode. Extension available for
7
7
## Supported applications
8
8
9
9
- Adobe After Effects
10
+
- Adobe After Effects (Beta)
10
11
- Adobe ExtendScript Toolkit
11
12
- Adobe Illustrator
13
+
- Adobe Illustrator (Beta)
12
14
- Adobe InCopy
13
15
- Adobe InDesign
14
16
- Adobe Photoshop
17
+
- Adobe Photoshop (Beta)
15
18
16
19
## Features
17
20
@@ -28,10 +31,12 @@ Adobe Script Runner executes script in the active viewer by default. However, wh
28
31
## Installation
29
32
30
33
-### From VSCode application
34
+
31
35
- Open `Extensions` and type `Adobe Script Runner`.
32
36
- Click `Install` and then `Reload` button.
33
37
34
38
-### From GitHub
39
+
35
40
- Download repository and unzip the package.
36
41
- Copy `VSCode-Adobe-Script-Runner-master` to `/Users/YOURUSER/.vscode/extensions` folder.
37
42
@@ -48,15 +53,15 @@ Keyboard shortcut `Cmd+R` is bind to `adobeScriptRunner.ae` command, which will
48
53
- Open Keyboard Shortcuts editor and click on the link `keybindings.json`.
49
54
- This will open the Default Keyboard Shortcuts on the left and your `keybindings.json` file where you can overwrite the default bindings on the right.
50
55
- With `keybindings.json` in focus click `Cmd+K` twice to open an interactive keybinding modal window (or whatever it’s called) and follow the on-screen instructions. This will create a new binding entry in the `keybindings.json` file.
51
-
- Edit the `command` property to `adobeScriptRunner.XX`, where XX is an abbreviation of the application. Check available abbreviations in `Extensions > Adobe Script Runner > Contributions` tab.
56
+
- Edit the `command` property to `adobeScriptRunner.XX`, where XX is an abbreviation of the application. Check available abbreviations in `Extensions > Adobe Script Runner > Contributions` tab.
52
57
53
58
The result should look something like this:
54
59
55
60
```json
56
61
{
57
-
"key": "cmd+r",
58
-
"command": "adobeScriptRunner.ae",
59
-
"when": "editorTextFocus"
62
+
"key": "cmd+r",
63
+
"command": "adobeScriptRunner.ae",
64
+
"when": "editorTextFocus"
60
65
},
61
66
```
62
67
@@ -68,8 +73,8 @@ Use token to execute a different file, rather than the one in the viewer. Add `A
68
73
69
74
```javascript
70
75
/*
71
-
Adobe-script-runner '../../index.js'
72
-
Executes file between quotes rather than the one in the active viewer.
76
+
Adobe-script-runner '../../index.js'
77
+
Executes file between quotes rather than the one in the active viewer.
73
78
*/
74
79
75
80
alert('Hello World'); // This line never gets executed, unless `index.js` is referencing the file in viewer.
@@ -100,12 +105,15 @@ Click `Cmd+,` on Mac or `Ctrl+,` on Windows to modify settings. Extension expose
100
105
**For Windows users only:**
101
106
102
107
-`adobeScriptRunner.winAfterEffectsExe`: path to Adobe After Effects executable (AfterFX.exe).
108
+
-`adobeScriptRunner.winAfterEffectsBetaExe`: path to Adobe After Effects (Beta) executable (AfterFX (Beta).exe).
103
109
-`adobeScriptRunner.winExtendscriptToolkitExe`: path to Adobe ExtendScript Toolkit executable (ExtendScript Toolkit.exe).
104
110
-`adobeScriptRunner.winIllustratorExe`: path to Adobe Illustrator executable (Illustrator.exe).
111
+
-`adobeScriptRunner.winIllustratorBetaExe`: path to Adobe Illustrator (Beta) executable (Illustrator.exe).
105
112
-`adobeScriptRunner.winPhotoshopExe`: path to Adobe Photoshop executable (Photoshop.exe).
113
+
-`adobeScriptRunner.winPhotoshopBetaExe`: path to Adobe Photoshop (Beta) executable (Photoshop.exe).
106
114
107
115
Executable paths for InCopy and InDesign for Windows are not exposed because they are handled differently than the rest of the Adobe apps. Go figure Adobe ¯\\\_(ツ)\_/¯
108
116
109
117
## Known issues
110
118
111
-
- The host application does not get focus on script run.
119
+
- The host application does not get focus on script run.
0 commit comments