parent

書式

SpotObject.parent

説明

parentはSpotオブジェクトの親オブジェクトを示します。Spotオブジェクトの場合、親オブジェクトは常にDocumentオブジェクトになります。
var item=app.activeDocument.pageItems[0];
try{
    alert(item.fillColor.spot.parent);
}catch(e){
    alert("スポットカラー(特色)があありません。スウォッチパネルで特色を作成してから実行してください");
}

目次に戻る