UI display of resident extensions is not stable in InDesign
Hi,
I am developing a CEP extension that will work immediately after the application is launched.
- Works in Photoshop, Illustrator, InDesign.
- The extension will run resident and output a work log regardless of whether the UI panel appears or not.
- User controls the extension's work log output with a check box on the UI panel.
- The UI panel can be opened and closed at the user's discretion as needed.
- The reference is the Invisible HTML Extensions example from CEP_9.x.
CEP 9.0 HTML Extension Cookbook.md
<Lifecycle>
<AutoVisible>false</AutoVisible>
<StartOn>
<!-- PS dispatches this event on startup -->
<Event>applicationActivate</Event>
<!-- PPro dispatches this event on startup -->
<!-- <Event>com.adobe.csxs.events.ApplicationActivate</Event> -->
</StartOn>
</Lifecycle>
<UI>
<Type>Panel</Type>
<Menu>foo</Menu>
<Geometry>
<Size>
<Height>80</Height>
<Width>180</Width>
</Size>
---omission---
I proceeded with the above specification and it worked well on the Mac.
However, it broke down in InDesign on Windows. If I quit the app with the UI appearing, the next time I launch the app, an empty UI panel appears.
The type of UI is a panel, but it can be any of them.
Is there a good solution?
Thank you in advance.

