// openDocumentConditional.jsx // Copyright 2006-2008 // Written by Jeffrey Tranberry // Photoshop for Geeks Version 2.0 /* Description: Script to determine whether there are any documents open. */ // enable double clicking from the // Macintosh Finder or the Windows Explorer #target photoshop // Make Photoshop the frontmost application app.bringToFront(); ///////////////////////// // SETUP ///////////////////////// ///////////////////////// // MAIN ///////////////////////// //Make sure there are no open documents if (app.documents.length > 0){ alert ("This script requires that there are no open documents to run."); }else{ alert("OK to do a batch process."); } ///////////////////////// // FUNCTIONS /////////////////////////