0

I know that Stage.InitStyle(StageStyle.UTILITY) will create a stage that, as long as it has been init to an owner, will not be present in the task bar (or system specific equivalent).

I also know that Stage.InitStyle(StageStyle.TRANSPARENT) will create a stage with no border or buttons for closing/minimizing/maximizing.

Is it possible to have both?

Will
  • 3,413
  • 7
  • 50
  • 107
  • possible duplicate of [A javaFX Stage could be both StageStyle.UTILITY and StageStyle.TRANSPARENT?](http://stackoverflow.com/questions/15502451/a-javafx-stage-could-be-both-stagestyle-utility-and-stagestyle-transparent) – sazzy4o Jan 03 '15 at 20:19
  • Look here https://stackoverflow.com/questions/46712293/how-can-i-remove-my-javafx-program-from-the-taskbar – Mahe Aug 23 '18 at 15:39

1 Answers1

0

It is not yet possible in javafx but javafx is swing compatible so you can use swing to make a swing equivalent to a transparent utility stage. See here for some examples. I hope that this helps.

Community
  • 1
  • 1
sazzy4o
  • 3,073
  • 6
  • 34
  • 62