Skip to main content
Participating Frequently
October 20, 2024
Question

Can these problems be solved using the Automation Blocks AE Extension?

  • October 20, 2024
  • 1 reply
  • 193 views
  1. How to off Toggle Transparency Grid in selected composition?
This topic has been closed for replies.

1 reply

Mathias Moehl
Community Expert
Community Expert
October 21, 2024

Execute this

https://ae-scripting.docsforadobe.dev/other/viewoptions.html?highlight=transparency+grid#viewoptions-object

var activeViewer = app.activeViewer;
var viewOptions = activeViewer.views[0].options;
viewOptions.checkerboards = false;

in an Execute Code block

Mathias Möhl - Developer of tools like BeatEdit and Automation Blocks for Premiere Pro and After Effects