Avoid Tips Window Opening via API When Using ProjectManager and FrontEndTool #7907
-
Hello, I am using a custom rewrited |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 4 replies
-
I don't think we have any programmatic way of doing this. But, you can add a value to the preferences file to turn them off. The preferences file can be found at Add/edit this line:
|
Beta Was this translation helpful? Give feedback.
-
You can try turning them off programmatically via the preferences. As your application is starting:
The plugin that shows the dialog is going to read this property. |
Beta Was this translation helpful? Give feedback.
-
I believe your application launching code will block until the application is finished. If so, then you can put the code after that. If that is not getting called, then you can try adding a Window listener to the main frame and do the work when the window closes. |
Beta Was this translation helpful? Give feedback.
-
@dragonmacher Other thing in the same style of the |
Beta Was this translation helpful? Give feedback.
-
I can't say for sure without debugging it. You are really rolling your own adventure here, exploring uncharted uses of the code base. |
Beta Was this translation helpful? Give feedback.
You can try turning them off programmatically via the preferences. As your application is starting:
The plugin that shows the dialog is going to read this property.