Is there a (better) way to determine if a selection is present in a layer in Photoshop without having using a try/catch on the selection.bounds?
try
{
var sel = app.activeDocument.selection.bounds;
}
catch(e)
{
var sel = undefined;
alert("No selection");
}
if (sel) alert(sel);
If there is no selection instead of the (expected) undefined bounds getting returned, I just get the error 1302: No such element. Hence the need for a try/catch.
Sadly the prototype didn't work with Photoshops EMCA limits, so I turned it into a function: