Can a Flax Air Window (NativeWindow) be modal? how?
A:
I think you need to expand on your use case.
If you want it to be modal, do you want to shut down the entire operating system until this window is handled by the user? I doubt that is possible. Do OSes support that in any way? (Other than when crashing).
If you want to prevent your app from being used while this window is up, don't use NativeWindow use a component with the PopUpManager. It has a modal property when creating the popup.
www.Flextras.com
2010-07-13 19:34:04
i will open a settings window of my application in a "system" window, and prevent clicking in the application...
caeycae
2010-07-14 04:09:06
I wouldn't use Native Window for that. NativeWindow opens up a new Operating System window. Instead create your own "setting" component and open that using the PopUpManager. Take a look at MS Word, or your browser. All the setting Windows are contained within the app.
www.Flextras.com
2010-07-14 11:33:21
ok, i will change the windows to components, but in other lenguajes, this is posible. Tanks for the help
caeycae
2010-07-14 14:17:29
Which languages? Got any samples? Any test programs that I can run?
www.Flextras.com
2010-07-14 14:23:38
In java swing, we can make slave windows.
caeycae
2010-07-16 15:36:07