How to programmatically minimize Panda window

Hi,

does anyone know how I could minimize the Panda window from within code (it has been created already)?
I tried

        props = WindowProperties() 
        props.setMinimized(True) 
        base.win.requestProperties(props)

but that doesn’t do anything. The documentation for setMinimized() seems to hint that this method is intended to be used before creating the window. What can I do if I want the app to minimize after creating the window?

Any ideas?

Many thanks,
Max Hajek
Vienna, Austria

No, that would be the way to do it, except that we haven’t implemented support for minimizing a window in code; sorry.

David

Okay, so what I’ll do is write a no-op executable and call it from within code. As my app is full-screen, that should do the job.

Thanks as always,

Max
Vienna, Austra