Notify in OSX process doesn't appear on top
BlitzMax Forums/BlitzMax Programming/Notify in OSX process doesn't appear on top
| ||
I have a converter program that my main editor uses to convert image files to my own .tex format. The editor uses FreeProcess to launch the converter, and reads the results from the process pipe. If an error or some other warning is encountered, the process will use the Notify() command to pop up a message box telling the user what is happening. However, on OSX the message box appears behind the main editor window. I actually thought the program had froze up before I figured out there was a message box behind it. This behavior occurs if the converter program is compiled as either a GUI or non-GUI app. Of course, the simple solution is to just make the converter process print out any warnings instead of notifying the user, but I was wondering if there was a way to make the Notify() message boxes appear on top of the main program's window. |