How-to change Artboard Background Color via scripting
I have been receiving files with a white background, which can be set to transparent within the artboard panel dropdowns. When I create a new artboard, the default IS transparent, however when I do so through scripting, it shows up as white.
Are there any options to set either the background color of artboards that currently exist, or create a new artboard with a transparent background? From what I’ve read, artboard color is unavailable in the DOM, I’m wondering if it follows similar read only logic of a new document.
//Test a new artboard in the current document
var newAB = app.activeDocument.artboards.add([0, 0, 500, -500]);
