- Сообщения
- 2 089
- Реакции
- 145
Здравствуйте дамы и господа!
Я поставила себе Atom но не получается его связать с Illustrator CC Win 7 64
Как это можно сделать?
Я следовала вот этому tutorial - rjduran/adobe-scripting
но похоже что там код для Mac
Я поставила себе Atom но не получается его связать с Illustrator CC Win 7 64
Как это можно сделать?
Я следовала вот этому tutorial - rjduran/adobe-scripting
но похоже что там код для Mac
- Install Atom IDE
- Install process-palette atom package.
- Add a new global command to the process-palette.json file by going to the package setup options and adding the following.
- Give it a namespace of "ai"
- An action name of "run-current-script"
- A keystroke of "cmd-ctrl-r" (You can set this to anything you want)
- A shell command of osascript -e 'tell application "Adobe Illustrator"' -e 'activate' -e 'do javascript "#include '{fileAbsPath}'"' -e 'end tell'
- Load a new .jsx file and run it via "cmd + ctrl + r" or by right clicking on the file in the sidebar and choosing "Run With" > Run Current Script.
- Make sure Adobe Illustrator is open and you should see the results when running the script.