Copy link to clipboard
Copied
when i use Script to chnge the saize of my Composition, it always changes my hight nad width to the very same number. please what do i do? i'm trying to change 1080x1080 to 12000x 675. but i keop getting 1200x1200 or 675x675.
Copy link to clipboard
Copied
Hey! That should do the tick:
var thisComp = app.project.activeItem;
thisComp.width = 1200;
thisComp.height = 675;
Hope that helps,
RedyMotion