すべての画像を埋め込むJS

Illustrator【イラレ】Javascript
この記事は約1分で読めます。
//選択をすべて解除
activeDocument.selection = null;

//埋め込み処理_ここから_丁寧に1つずつ埋め込みます。forのiは埋め込んだら1つずつ減る。
select_Obj = activeDocument.placedItems;

for (i = select_Obj.length -1; i >= 0; i--)
{
select_Obj[i].selected = true;
select_Obj[i].embed();
activeDocument.selection = null;
}