FlashWindow Method
The FlashWindow method flashes the dialog window.
Syntax
SKHtmlDialog.FlashWindow(flags, count, timeout)
|
Parameters
flags |
DWORD value that contains the flags. |
count |
DWORD value that contains the number of flashes. |
timeout |
DWORD value that contains the milliseconds between the flashes. |
Return Value
Remarks
Possible flags are:
0 : stop
1 : caption
2 : tray
1|2 : all
4 : timer
12 : timernofg
See FLASHWINFO (MSDN) for further information.
Examples
The following example flashes a dialog window 3 times.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
mydialog = SiteKiosk.SiteKioskUI.CreateHTMLDialog();
mydialog.Title = true;
mydialog.ShowDialog();
mydialog.FlashWindow(1, 3, 1000);
</SCRIPT>
|
Applies to
SiteKiosk v6.0 (and later versions).
Back to top