getInternalColor

書式

SpotObject.getInternalColor()

説明

getInternalColor()メソッドはSpotオブジェクトの内部カラーコンポーネントオブジェクトを返します。指定できるパラメーターはありません。
var item=app.activeDocument.pageItems[0];
try{
    alert(item.fillColor.spot.getInternalColor());
}catch(e){
    alert("スポットカラー(特色)がありません。スウォッチパネルで特色を作成してから実行してください");
}

目次に戻る