Is there a way to setup a keyboard shortcut to run a custom script in Illustrator? So far I haven't found a way. If this is not possible to do from within Illustrator, is there a 3rd party solution for that?
Answer
3rd party solutions
Automator ( Mac - Native app )
Recently made a video about this.
- Create a new
Service
- At the top:
Service receives [no input] in [Adove Illustrator CC 2015.app]
- If you don't specify application here, you can launch the script when any window is active, which can be useful.
- Search and add action:
Get Specified Finder Items
.- Add the
.jsx
script here.
- Add the
- Search and add action:
Open Finder Items
.- Open with: "Adobe Illustrator CC 2015.app"
- Save service: Cmd+S
- Make sure you remember the name for this next step
- Go to OSX
System preferences > Keyboard > Shortcuts
- You should be able to find your script under
General
- Add a shortcut for it.
Alfred ( Mac - £17 to unlock feature required to do this )
Automator does this same thing quite well, but I always have to mention Alfred, since it has a few benefits:
- You got the workflow and the hotkey in one place.
- Store multiple shortcuts in one place. In this screenshot I'm triggering the script file with applescript, but Alfred does have a "Open file" action too.
- You can trigger scripts and do other things by using keywords.
- File Filters - Here's a Gif where I'm using a file filter to search my Photoshop scripts stored in a specific Dropbox folder. It uses a fuzzy search so you only have to remember one word in the script name in order to find it. Excellent if you got tons of scripts. Makes it a lot easier to use scripts that you don't use very often.
- It can sync workflows through Dropbox, so you can easily use the same scripts and the same shortcuts on a new computer just by installing Dropbox and Alfred.
Recently made a video about this. Not the best video quality. Forgot to record it full screen.
Alfred Preferences > Workflows
tab- From the bottom left: Click the
+
icon and addBlank Workflow
- Give it a descriptive
Workflow Name:
and pressCreate
- Give it a descriptive
- From the top right: Click the
+
Icon and addTriggers > Hotkey
- In the first tab
Hotkey settings
, set a hotkey combination - In the second tab
Related Apps
, drag Illustrator.app inside the window andSave
- In the first tab
- From the top right: Click the
+
Icon and addActions > Open File
- Drag your
.jsx
file to that first box on the left - Drag
Illustrator.app
to the second box on the right andSave
- Drag your
- Drag a line from the right side of the
Trigger
to the left side of theAction
to connect them.
Autohotkey ( Windows - Free )
- Add this code below to a new notepad document:
#IfWinActive, ahk_class illustrator
^!.::Run, Illustrator.exe C:\Users\joonas\Desktop\test.jsx
- Save that with an extension
.ahk
- You can open that file in the default app (ahk).
- You should see it running in the
System tray
under a green H icon ( ). - You can close it from the
System tray
via context menu.
- You should see it running in the
- If you want the hotkey to always be accessible (and not just when you remember to open the .ahk file), just put the file in the windows startup folder.
- Remove the first line of the code, if you want to be able to trigger the script from any application.
Note that if you don't plan your hotkeys carefully, this can block other hotkeys from Illustrator or other applications, if you decide to get rid of that first line.
No comments:
Post a Comment