■ソースコード
				function checkSelection()
				{
				 var flag = true;
				 try {
				  activeDocument.selection.translate(0,0);
				 }catch(e){
				  flag = false;
				 }
				 return flag;
				}
if (checkSelection())
				{
				 alert("選択範囲があります");
				}else{
				 alert("選択されていません");
				}
				■ポイント
				 なし