• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

Invisible Windows in After Effects?

Explorer ,
Jun 05, 2020 Jun 05, 2020

Copy link to clipboard

Copied

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

TOPICS
Scripting

Views

488

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Community Expert , Jun 05, 2020 Jun 05, 2020

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

Votes

Translate

Translate
Community Expert ,
Jun 05, 2020 Jun 05, 2020

Copy link to clipboard

Copied

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

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Jun 05, 2020 Jun 05, 2020

Copy link to clipboard

Copied

LATEST

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!

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines