Photoshop Scriptコード

Scripting Listenerで取得したコードやScriptUIコードを載せています。

透明部分の選択範囲を読み込む

コード

/**
 * 透明部分の選択範囲を読み込む
 */
function loadClearSelection() {
    var desc = new ActionDescriptor();
    var ref = new ActionReference();
    ref.putProperty(charIDToTypeID('Chnl'), charIDToTypeID('fsel'));
    desc.putReference(charIDToTypeID('null'), ref);
    var ref1 = new ActionReference();
    ref1.putEnumerated(charIDToTypeID('Chnl'), charIDToTypeID('Chnl'), charIDToTypeID('Trsp'));
    desc.putReference(charIDToTypeID('T   '), ref1);
    desc.putBoolean(charIDToTypeID('Invr'), true);
    executeAction(charIDToTypeID('setd'), desc, DialogModes.NO);
}

確認バージョン

CS2, CS6

ページトップへ