Something like that (nw.js export win64b)
It's a quick sample without all minimize/maximize/close features
Edit: you can resize the windows
Normally yes, you can resize the window by dragging it's extents. You can not though set the windows size via code/event sheet, or maximize the window (not full screen) and restore the window via code/event sheet.
Also yes, something like that, thanks for taking the time.
Here is my review:
0. Is the window skin, or part able to be transparent to the desktop, IE: .png?
1. Does this work by loading layouts into the window skin/controls layout?
2. Pressing the maximize button should scale the window to the display not go full screen (seems like it is in full screen mode, can't drag the window after maximize).
3. Pressing the maximize button twice should restore the window to it's previous size. Something like:
var preservedWidth;
var preservedHeight;
function saveScreenSizeBeforeMinimising()
{
preservedWidth = window.innerWidth;
preservedHeight = window.innerHeight;
}
function restoreScreenSize()
{
window.resizeTo(preservedWidth, preservedHeight);
}
[/code:gv3h7v4z]
4. Close button seems to crash after hitting maximize.
5. Minimize button works good.