0
Contributor
,
/t5/after-effects-discussions/how-do-i-modify-this-script-to-set-the-mask-mode-to-subtract-instead-of-the-default-add/td-p/15199485
Mar 08, 2025
Mar 08, 2025
Copy link to clipboard
Copied
I have this script which attempts to create a vignette. However, the Mask mode is set to Add so it is currently a reverse Vignette (ie a soft black ellipse). How to I modify this script to make it Subtract instead? Or if that is not possible, Add Invert?
app.beginUndoGroup("Create Vignette");
var comp = app.project.activeItem;
if (comp && comp instanceof CompItem) {
var layer = comp.selectedLayers[0];
if (!layer) {
// Create a black solid if no layer is selected
layer = comp.layers.addSolid([0, 0, 0], "Black Solid", comp.width, comp.height, comp.pixelAspect);
}
if (layer) {
var mask = layer.Masks.addProperty("Mask");
var maskShape = mask.property("maskShape").value;
var compWidth = comp.width;
var compHeight = comp.height;
maskShape.vertices = [
[compWidth * 0.5, 0],
[compWidth, compHeight * 0.5],
[compWidth * 0.5, compHeight],
[0, compHeight * 0.5]
];
maskShape.inTangents = [
[-compWidth * 0.25, 0],
[0, -compHeight * 0.25],
[compWidth * 0.25, 0],
[0, compHeight * 0.25]
];
maskShape.outTangents = [
[compWidth * 0.25, 0],
[0, compHeight * 0.25],
[-compWidth * 0.25, 0],
[0, -compHeight * 0.25]
];
mask.property("maskShape").setValue(maskShape);
mask.property("maskFeather").setValue([750, 750]);
}
} else {
alert("Please open a composition first.");
}
app.endUndoGroup();
TOPICS
Scripting
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
1 Correct answer
Community Expert
,
Mar 08, 2025
Mar 08, 2025
Add this:
mask.maskMode = MaskMode.SUBTRACT;
Community Expert
,
/t5/after-effects-discussions/how-do-i-modify-this-script-to-set-the-mask-mode-to-subtract-instead-of-the-default-add/m-p/15199562#M262592
Mar 08, 2025
Mar 08, 2025
Copy link to clipboard
Copied
Add this:
mask.maskMode = MaskMode.SUBTRACT;
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
Mark Paterson
AUTHOR
Contributor
,
LATEST
/t5/after-effects-discussions/how-do-i-modify-this-script-to-set-the-mask-mode-to-subtract-instead-of-the-default-add/m-p/15199574#M262593
Mar 08, 2025
Mar 08, 2025
Copy link to clipboard
Copied
Wonderful. Thank you!
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more

