選択範囲内にペーストする

■プログラム説明
 選択範囲にペーストするにはpaset(true)のようにpaste()の引数にtrueを指定します。falseを指定するか省略すると通常のペーストになります。

■ソースコード
chObj = activeDocument.channels[3];
activeDocument.selection.load(chObj);
activeDocument.paste(true);

■ポイント
 なし