Skip to content

Instantly share code, notes, and snippets.

@shamun
Created March 27, 2017 08:54
Show Gist options
  • Save shamun/281b606a130ae8c1313c6eb2b1433b14 to your computer and use it in GitHub Desktop.
Save shamun/281b606a130ae8c1313c6eb2b1433b14 to your computer and use it in GitHub Desktop.
fail.md

Make the Software 1024x768 and screen resolution same.

Step 1:

A) Download, Install https://nwjs.io/,

B) make a file package.json with following content and put it in same directory where nw.exe is

package.json:
{
  "name": "Windows 10 - full screen GUI with keyboard on top test", 
  "main": "index.html",
  "window" : {
    "title": "test",
    "toolbar" : false, 
    "frame" : false,
    "resizable": false, 
    "kiosk": false,
    "always-on-top": true,
    "width":1024,
    "height":768,
    "show": true
  },
  "webkit": {
    "plugin": false,
	"java": false,
	"page-cache": true
  },
  "nodejs":true
}

B) make a file index.html where nw.exe and put following content:

page: <input type=text />

Step 2:

Run the nw.exe and run keyboard to test. keyboard has to stay on top

Step 3:

now nw.exe touch and keyboard is getting disappear. Keyboard GUI should stay always on top of anything but with NW.exe its not the case.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment