var vppath = curLayer.Effects.addProperty("VP-Path");
vppath.property("Azimuth").expression = ("50");
var vp = curLayer.Effects.addProperty("Virtual Projector");
vp.property("Azimuth").expression = ("50");
But this doesn't:
var vppath = curLayer.Effects.addProperty("VP-Path");
var vp = curLayer.Effects.addProperty("Virtual Projector");
vp.property("Azimuth").expression = ("50");
vppath.property("Azimuth").expression = ("50");
(FWIW, VP-Path is the custom effect, Virtual Projector is a plugin effect.)