公開日:2021年2月16日
スクリプトを使うほど労力がいらない動作ではありますが、他のスクリプトで選択解除の動作を実装する場合の参考になれば。
var sel=app.activeDocument.selection;
for(var i=sel.length-1;i>-1;i--){
sel[i].select(SelectionOptions.REMOVE_FROM);
}
app.activeDocument.selection.length=null;
でも可能です。