Forums › Adobe After Effects › Scripting : How to use setSettings on OutputModule
-
Scripting : How to use setSettings on OutputModule
-
Martin Dumas
January 25, 2023 at 11:20 pmI try this but it doesn’t work :
var resize_data = {“Resize”:true, “Width”:200,”Height”:200};
renderQueueItem.outputModule(1).setSettings(resize_data);
-
Graham Quince
January 28, 2023 at 10:00 amI see no one has replied, the Expressions forum might be a better place to ask this. I’m afraid I don’t know the answer, but I did stumble across this document the other day, which might also help:
-
Walter Soyka
January 30, 2023 at 9:42 pmResize doesn’t use “Width” and “Height” attributes. Instead, it uses a “Resize to” object with x and y attributes.
Try this:
var resize_data = {"Resize":true, "Resize to":{x:200, y:200}};
Viewing 1 - 3 of 3 posts
Log in to reply.