I'm developing a multi monitor fullscreen application with Adobe Air 2.6.
I can create a window for every monitor, and put those windows to fullscreen.
theWindow.stage.displayState = StageDisplayState.FULL_SCREEN_INTERACTIVE;
The problem comes when interacting with those windows. If I click the window on the main monitor (the one with the dock and menu bar) no problem, but when I click any other window the system menu bar becomes visible.
I've tried resizing the main window to match the monitor size and moving it to a negative coordinate but it always stays behind the bar.
Is it possible to do this in Air? Should I look for another solution?