-
Script to change the Line Join of shape layer line
I don’t know if this is even close, but I’m trying to change the Line Join of a shape layer to round. Here’s what I have so far.
function line(){
var myComp = app.project.activeItem;
var myStroke = shapeGroup.property("Stroke");
myStroke.property("Line Join").setValue([Round Join]);
}
line()