Pergunta
how to scale while keeping the layer center position
when scaling layer up or down its position changes. how can i compensate for this shift keeping its relative position?
sample code:
function scale1(a,b,c){
var x2s = app.project.item(2).layer(a).property("Transform").property("Scale")
x2s.setValueAtTime(, [c,c]);
}
scale1(2,0,50)
