Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法只为内层上的名称检索层组的名称?我问这个是因为我试图修剪一个文件夹的所有内容,里面有一个特定的层。请问我可以得到任何帮助吗?
如果图层名称和组名称都是唯一的,那么您可以简单地使用以下方法检索它:
app.activeDocument.activeLayer = app.activeDocument.layerSets.getByName("my group name").artLayers.getByName("my layer name");
其中“我的组名”是组名,“我的层名”是“我的组名”中的层名。