Minimize/Maximize window
Monkey Targets Forums/Desktop/Minimize/Maximize window| 
 | ||
| Anyone know if it's possible to minimize and maximize the window?  I'm trying to build a front-end which launches an external app (using the Execute command) and it won't display 'on top' if the monkey window is full-screen. | 
| 
 | ||
| Actually something like this may work... Change Screen Mode in GLFW: http://www.monkeycoder.co.nz/Community/posts.php?topic=4418 | 
| 
 | ||
| I've managed to hack in ShowWindow and HideWindow commands (based on similar functions added to GLFW 3 - actually existing code for these functions exist in 2.7 but are slightly different) into v68 which does exactly what I want without having to resort to changing the screen mode (link above). As it says it will hide or show your window (fullscreen or windowed). A fair few changes across various files but will post up sometime over the next few days. Be nice to see this added to the core! | 
| 
 | ||
| After a bit of thought, i've managed to use the existing GLFW 2.7 functions without having to hack into various files.  Find the source here: http://monkeycoder.co.nz/Community/posts.php?topic=4777 |