16 lines
542 B
JavaScript
16 lines
542 B
JavaScript
function 删除图层3()
|
|
{
|
|
app.activeDocument.suspendHistory("Combine all masks", "拼合所有蒙版()");
|
|
}
|
|
|
|
|
|
function 拼合所有蒙版() //拼合所有蒙版
|
|
{
|
|
|
|
var d = new ActionDescriptor();
|
|
var r = new ActionReference();
|
|
r.putEnumerated(stringIDToTypeID("document"), stringIDToTypeID("ordinal"), stringIDToTypeID("targetEnum"));
|
|
d.putReference(stringIDToTypeID("null"), r);
|
|
executeAction(stringIDToTypeID("e805a6ee-6d75-4b62-b6fe-f5873b5fdf20"), d, DialogModes.NO);
|
|
|
|
} |