Please help to create "Unlonk All, Create Outlines, Embed" Scrpit
Dear all, hope you enjoying everyday.
I do "Unlonk All, Create Outlines, Embed" every time after finishing my artwork.
I use action for "Unlonk All, Create Outlines" and "Embed" by manually.
Some times I need to click more than 30 times just for embed...so I tried to avoid for meaningless click.
Finally I found Embed scrpit... as below.
---------------------------------------------------------------------------------------------------------------
#target Illustrator
if ( app.documents.length > 0 ) {
while ( app.activeDocument.placedItems.length > 0 ) {
placedArt = app.activeDocument.placedItems[0];
placedArt.embed();
}
}
---------------------------------------------------------------------------------------------------------------
but I can not record script on action.
After all this situation, I'm looking for the way to create script that include
"Unlonk All, Create Outlines All(Text only but with strock is better), Embed All".
Hopefully I can got help from here.
Thank you.
