Is it possible to minimize window using JS?

hi,

I managed to create popup window with no standard MSWindow’s borders and Window’s header. It’s great effect, but you have not any buttons used to minimize and close :?
I could use an image with window.close() function to close, but how to minimize? Is it possible?

No, it’s not possible. You could do window.blur() though to send it to the back, or window.resizeTo() to make it smaller.

hmmm… too bad :frowning:

But I was afraid so… I only wonder why there is close() and easy way to switch into fullscreen mode, and no way to minimize windows :confused:

but thanks

bye