Skip to main content
Inspiring
March 23, 2024
Answered

Illustrator Action Question

  • March 23, 2024
  • 1 reply
  • 803 views

I created an action which works well, but at the very end, I added a step to deselect everything. I need to add one extra step of making the Selection Tool (V) the active tool. I've tried including the mouse click on the Selection tool and I've tried the V shortcut but the action is not recording either. I also pulled down the hamburger icon on the actions tabs and tried to add a menu item, but when I type in Select, the option actually add the Select tool is not available. 

 

I would think the option to switch tools would be a no-brainer for the people that create complex actions. 

 

Any help would be appreciated. (I know I could simple click the V tool after the action runs, but I'd like to include it in the action itself)

 

MJ

This topic has been closed for replies.
Correct answer CarlosCanto

one way of selecting the Selection tool is using a script

 

- save the following script to plain text (not Rich Text)

- give it a js or jsx extension,

- save it in the Presets/Scripts folder,

- restart Illustrator.

- Then start recording at the end of your Action,

- click on Insert Menu Action

- select the script in the File->Scripts menu

- stop recording

 

 

app.selectTool("Adobe Select Tool")

 

 

1 reply

CarlosCanto
Community Expert
CarlosCantoCommunity ExpertCorrect answer
Community Expert
March 23, 2024

one way of selecting the Selection tool is using a script

 

- save the following script to plain text (not Rich Text)

- give it a js or jsx extension,

- save it in the Presets/Scripts folder,

- restart Illustrator.

- Then start recording at the end of your Action,

- click on Insert Menu Action

- select the script in the File->Scripts menu

- stop recording

 

 

app.selectTool("Adobe Select Tool")

 

 

Inspiring
March 24, 2024

got it! Works perfectly. Thanks Carlos.