How to enable/disable Full Screen(F11) mode by clicking a Button?
Hi There,
I was trying to enable full-screen mode by clicking a button instead of f11 option.
I used the following HTML code as a normal HTML file, works cool.
<button onclick='document.documentElement.webkitRequestFullscreen();'>Go Fullscreen Mode</button><button onclick='document.webkitExitFullscreen();'>Close Fullscreen</button>
I also tried HtmlTextArea widget with the read-only option enabled, Not getting the expected result.
Even I tried WebFrame widget to call the HTML file and execute, not worked.
Give me a solution if exist.

