Skip to main content
Participant
December 20, 2021
Question

Scrip, scale comp, changes both Hight and width.

  • December 20, 2021
  • 1 reply
  • 125 views

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.

This topic has been closed for replies.

1 reply

Inspiring
December 20, 2021

Hey! That should do the tick:

 

 

var thisComp = app.project.activeItem;
thisComp.width = 1200;
thisComp.height = 675;

 


Hope that helps,
RedyMotion