如何检查Photoshop中是否打开了任何文档?

通过Photoshop脚本

我已经尝试过activeDocument.length,但它返回的ActiveDocument未定义。

我想要这样的东西:

if(documents.open === 0){
    alert('NO DOCUMENT');
} else {
    alert('DOCUMENT OPEN');
}

最佳答案

关闭,但没有香蕉。你要

documents.length


在这里看到它:

  if (documents.length == 0)
  {
      alert("No files open to work with, dude!")
  }

关于javascript - Photoshop脚本-如何检查是否打开了任何文档?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26931560/

10-11 23:09