inverting an ellipse???
Hi,
i have some code that creates an ellipse to the size of my comp, now i just want to tweak some attributes of the ellipse, like inverting it (to create a vignette) and then bluring it.
this is the code so far:
var myComp = app.project.activeItem;
var myEllipseSize = [1920,1080];
var myFillColor = [0.0, 0.0, 0.0];
var myShapeLayer = myComp.layers.addShape();
var myShapeLayerContents = myShapeLayer.property("ADBE Root Vectors Group");
var myShapeGroup = myShapeLayerContents.addProperty("ADBE Vector Group");
var myEllipse = myShapeGroup.property("ADBE Vectors Group").addProperty("ADBE Vector Shape - Ellipse");
myEllipse.property("ADBE Vector Ellipse Size").setValue(myEllipseSize);
var myShapeFill = myShapeGroup.property("ADBE Vectors Group").addProperty("ADBE Vector Graphic - Fill");
myShapeFill.property("ADBE Vector Fill Color").setValue(myFillColor);
does anyone know how to now invert and blur this shape?
thanks,
Sam