Skip to main content
Inspiring
June 5, 2020
Answered

Invisible Windows in After Effects?

  • June 5, 2020
  • 1 reply
  • 669 views

It isn't documented, but through trial and error I have determined that After Effects does not support invisible windows:

Invisible Windows in Cookbook

Can anybody else confirm this?

 

Thanks

This topic has been closed for replies.
Correct answer Justin Taylor-Hyper Brew

You can, I've done it before. Make sure your manifest is set up right as outlined in the cookbook.

1 reply

Justin Taylor-Hyper Brew
Community Expert
Community Expert
June 5, 2020

You can, I've done it before. Make sure your manifest is set up right as outlined in the cookbook.

Devin-Author
Inspiring
June 5, 2020

Thank you for encouraging me not to give up! I too got it working. My mistake was that Geometry/Size/Width and Geometry/Size/Height elements are required to exist -- though they may be set to zero. Example:

 

<Extension Id="com.test.invisible">
    <DispatchInfo>
        <Resources>
            <MainPath>./invisibletest.html</MainPath>
        </Resources>
        <Lifecycle>
            <AutoVisible>false</AutoVisible>
        </Lifecycle>
        <UI>
            <Type>Custom</Type>
            <Geometry>
                <Size>
                    <Height>0</Height>
                    <Width>0</Width>
                </Size>
            </Geometry>
        </UI>
    </DispatchInfo>
</Extension>

 

Thanks!