Mobile app version of vmapp.org
Login or Join
Lengel450

: Illustrator action to embed all external objects To embed all external objects in Illustrator I do this: Open the Links panel Select all the linked objects (select first, shift+clik on last) Select

@Lengel450

Posted in: #Actions #AdobeIllustrator #Automation #IllustratorScripting

To embed all external objects in Illustrator I do this:


Open the Links panel
Select all the linked objects (select first, shift+clik on last)
Select Embed object(s) from the dropdown menu in the panel


But when recording those actions (macro), they are not being saved.

Is there a way to automate this process? Script?

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Lengel450

2 Comments

Sorted by latest first Latest Oldest Best

 

@Eichhorn212

Embed is one of the commands you can't execute with an action (perhaps someone else can explain specifically why, I'm not sure).

You can do this with a really short script, here's an example of the code:
#target Illustrator

if ( app.documents.length > 0 ) {
while ( app.activeDocument.placedItems.length > 0 ) {
placedArt = app.activeDocument.placedItems[0];
placedArt.embed();
}
}


Save this as a plain text file with the extension .jsx into this folder : "[install directory]AdobeAdobe Illustrator CC 2015Presetsen_USScripts", restart Illustrator and run the script from File->Scripts.

10% popularity Vote Up Vote Down


 

@Gloria351

(Illustrator) To play a set of actions, select the set name, and click the Play button in the Actions panel, or choose Play from the panel menu.

To play an entire single action, select the action name, and click the Play button in the Actions panel, or choose Play from the panel menu.

If you assigned a key combination to the action, press that combination to play the action automatically.

To play only a part of an action, select the command from which you want to start playing, and click the Play button in the Actions panel, or choose Play from the panel menu.

To play a single command, select the command, and then Ctrl-click (Windows) or Command-click (Mac OS) the Play button in the Actions panel. You can also press Ctrl (Windows) or Command (Mac OS), and double-click the command.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme