Navigate Method
The Navigate method navigates to a specified address.
Syntax
SiteKioskWindow.SiteKioskWebBrowser.Navigate(abs_URL, avb_IsUser)
|
Parameters
abs_URL |
String that contains the URL. |
avb_IsUser |
Boolean that specifies if a user started the navigation (default false). |
Return Value
Remarks
Note that the SiteKioskWindow object can only be used from within a browser skin file.
To use the SiteKioskWindow object in other files it can be referenced through the main object SiteKiosk. E.g.: SiteKiosk.WindowList.MainWindow.SiteKioskWindow.SiteKioskWebBrowser.Navigate(SiteKiosk.URLs.Email, false);
Examples
The following example navigates to www.cnn.com.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
myurl = "http://www.cnn.com";
SiteKioskWindow.SiteKioskWebBrowser.Navigate(myurl, false);
</SCRIPT>
|
Applies to
SiteKiosk v5.0 (and later versions).
Back to top