1stkeks
1stkeks

Reputation: 25

How to hide my Java / Swing program in ALT + TAB menu?

Currently I am trying to create a small Overlay that should not show in the alt+tab menu. I am using a JDialog in JRE 1.8.

Is there any way to achieve this?

Upvotes: 0

Views: 322

Answers (1)

edmandie
edmandie

Reputation: 191

You can try JDialog.setType( Window.Type.UTILITY );

Upvotes: 1

Related Questions