Hi all,
is it possible to hide applications or windows (with a specific title) with Construct?
I know that MMF2 Dev can do this with the Kernel Object but I dont know wether Construct can hide windows or something else
Thanks for all replies...
Develop games in your browser. Powerful, performant & highly capable.
Why would you want to? Construct is a 2d Game Creation system, so you would normally run it in a window or full-screen, or are you thinking of something really outside the box
Tools, maybe? Anyway, you can use the window object to hide a window, but I don't think you can hide a specific window using it's title or whatever.
Why would you want to?
I want to make something like VirtuaWin (http://virtuawin.sourceforge.net/) or another desktop manager.
MMF2 Developer can do this but I only have the standard version...
But even though thanks for your help
You can hide other windows with python with the ctypes library and the winapi reference. In particular the ShowWindow function should do the trick.
Example that hides any window for 5 seconds:
http://dl.dropbox.com/u/5426011/examples4/windowhide.zip made in 0.99.97
Thanks for your effort, R0J0hound,
that?s what I was searching for