-
Question about creating a script for AE
Hello, I was trying to write a small script for After Effects that includes a textbox. My code looks as follows:
var expText = SubGroup.add(‘edittext {properties: {name: “expText”, multiline: true, scrollable: true}}’);
expText.text = “Title”;
expText.preferredSize.width = 236;
expText.preferredSize.height = 80;
Right now my textbox is showing up correctly in the script, but the box where you write the text has a standard white background that contrasts badly with the dark grey interface look that After Effects has. I was wondering how I can make the white background dark, so that it looks a bit better. I found this screenshot somewhere online that shows a textbox with a much darker background and with white text. Any tips?