sciter-sdk / pysciter

Python bindings for Sciter
https://sciter.com
MIT License
397 stars 40 forks source link

Full screen support #25

Open mRokita opened 5 years ago

mRokita commented 5 years ago

Is it possible to show a window in full screen mode or it's not implemented yet?

pravic commented 5 years ago

As far as I know, there is no direct support for full screen windows. You can create a titleless window and resize it to the whole display size.

Alternatively, you can create a full screen window using OS API and attach Sciter to it.

pravic commented 5 years ago

Also, better ask this on the official forum to be sure.

pravic commented 5 years ago

https://github.com/c-smile/sciter-sdk/tree/master/samples/ideas/fullscreen-menu here's an example, by the way