OnFullScreenModeChange Event
Fires when the screen mode changes from normal to full or vice versa.
Syntax
SiteKioskWindow.SiteKioskWebBrowser.OnFullScreenModeChange = handler
|
Parameters
avb_Full |
Boolean value that is true if the browser runs in full screen mode. False if full screen mode is not disabled. |
Remarks
The object that caused the event can be referenced in the event function using "this".
Examples
The following example shows an alert window when the full screen mode changes.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
SiteKioskWindow.SiteKioskWebBrowser.OnFullScreenModeChange = OFSMCh;
function OFSMCh(avb_Full)
{
alert(avb_Full);
}
</SCRIPT>
|
Applies to
SiteKiosk v5.0 (and later versions).
Back to top