Currently diving into creating a plugin for Adobe After Effects and it's been quite the learning experience!
Almost everything is up and running smoothly, except I'm on the hunt to eliminate that default grey border/outline around my icon button.
Here's what I have in mind:
var myImageButton = new File(["image.png"]);
var myCustomButton = window.add("iconbutton",undefined,myImageButton);
myCustomButton.size = [30,30];
myCustomButton.outline = 0;
Any suggestions or thoughts?