Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aescripts/74ba7303530af9fb9766fa6f50cd3cba to your computer and use it in GitHub Desktop.
Save aescripts/74ba7303530af9fb9766fa6f50cd3cba to your computer and use it in GitHub Desktop.
Guy Van Bogart #AfterEffects #Script #KBar Changes the background color for the active comp to white. Can be customized to any color you'd like by simply changing the [1,1,1] value to reflect the appropriate RGB values.
// Changes the background color for the active comp to white. Can be customized to any color you'd like by simply changing the [1,1,1] value to reflect the appropriate RGB values...
//
// Example colors:
// [0,0,0] = Black
// [0.5,0.5,0.5] = Grey
app.project.activeItem.bgColor=[1,1,1];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment