I have an application that contains two stages which should be shown on two different screens both in fullscreen mode. I managed to position the two stages on seperate screens, and tried to set the fullscreen property to true on each Stage, but only of them is shown without decoration. It is always the one that has the fullscreen property set last that is shown in fullscreen mode.
Is it not possible in JavaFX 2.2 to have multiple stages in fullscreen mode at the same time?
I also ran into this problem and I found an easy solution(workaround):
First we need the id of the primary monitor:
After this we init and show the primary stage. It is important to do this on the primary monitor (for hiding taskbars and such things).
Now the workaround part. We create the stages for the other monitors: