Skip to content

Commit c7f0ae5

Browse files
author
Radoslaw Kamysz
committedFeb 7, 2020
removed unnecessary files
1 parent 03115ad commit c7f0ae5

11 files changed

+14
-409
lines changed
 

‎.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -59,3 +59,5 @@ typings/
5959

6060
# next.js build output
6161
.next
62+
.DS_Store
63+
dist/

‎README.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Control Adobe applications - such as Photoshop, Animate, Illustrator, InDesign -
33

44
More information about writing scripts for Adobe applications:
55
- [Photoshop, Illustrator, InDesign etc. scripting center](https://www.adobe.com/devnet/scripting.html)
6-
- [Adobe Animate JavaScript API](https://help.adobe.com/archive/en_US/flash/cs5/flash_cs5_extending.pdf)<br/>_I suggest to save this file to disk because, it's sometimes unavailable._
6+
- [Adobe Animate JavaScript API](https://help.adobe.com/archive/en_US/flash/cs5/flash_cs5_extending.pdf)
77

88
## Installation
99

@@ -247,8 +247,18 @@ The generated adobe scripts files - `jsx`/`jsfl` - are saved in the location spe
247247

248248

249249
## Tips
250+
251+
If the Adobe application does not start, try to:
252+
253+
* Change the access setting for the folder assigned to a variable `adobeScriptsPath`
254+
255+
* It is also possible that you will need to change user config to enable custom scripts.
256+
For example, for Photoshop, add `WarnRunningScripts 0` to the `PSUserConfig.txt` file in the Photoshop settings folder and restart Photoshop.
257+
250258
If any of the built-in functions does not work as you expected, you can write these functions yourself and run them via the `runScript()` method.
251259

260+
261+
252262
## Contribute
253263
Feel free to contribute. If you have any ideas, requests just leave a message.
254264

‎adobe-broadcast.ts

-24
This file was deleted.

‎api.ts

-109
This file was deleted.

‎app.ts

-77
This file was deleted.

‎broadcast.ts

-27
This file was deleted.

‎commands.ts

-25
This file was deleted.

‎defaults.ts

-11
This file was deleted.

‎listener.ts

-51
This file was deleted.

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "adobe-node",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"description": "Control Adobe applications - such as Photoshop, Animate, Illustrator, InDesign - from node. Run JavaScript to remotely - from the command line - create, modify or export document content. This module can be used to automate the workflow by creating an action chain that can be executed without user intervention.",
55
"main": "dist/index",
66
"scripts": {

‎script-file-creator.ts

-83
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.