-
How do i rename an ‘ADBE Angle Control-0001’?
Hi,guys,
1.I created an angle control object & renamed it OK,but when try to rename the actual angle control within it,it gives me an error.Anybody know why?
var fxAngle = dollyNull.Effects.addProperty(‘ADBE Angle Control’);
fxAngle.name = “Dolly XYZ Rotation”;
fxAngle.property(String(‘ADBE Angle Control-0001’)).name = “X Rotation”;2.Creating one angle control within an angle object is OK,but not more.When I try to create another one,I have an error “null is not an object”.Is there a way around?
var fxAngle = dollyNull.Effects.addProperty(‘ADBE Angle Control’);
fxAngle.property(String(‘ADBE Angle Control-0001’)).setValue([0]);
fxAngle.property(String(‘ADBE Angle Control-0002’)).setValue([0]);