#target Photoshop var docRef = app.activeDocument; function checkSelection() { var flag = true; try { docRef.selection.bounds; } catch (e) { flag = false; } return flag; } if (checkSelection()) { alert("選択範囲があります。"); } else { alert("選択範囲がありません。"); }