NavigationInfo Object
The NavigationInfo object provides remote navigation functionality.
Members Table
The following table lists the members provided by the NavigationInfo object.
|
Properties |
Description |
NavigateURL |
Navigation URL. |
|
Methods |
Description |
AddAllowedURL |
Adds an allowed URL to the surf area. |
AddForbiddenURL |
Adds a forbidden URL to the surf area. |
Send |
Sends the navigation command to a computer. |
|
Remarks
This object is returned by the CreateNavigationInfo method.
Use the NavigationInfo object to cause navigations and to change the surf area.
Examples
The following example causes the first available computer to navigate.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
navInfo = SiteCafe.Server.CreateNavigationInfo();
navInfo.NavigateURL = "http://www.sitekiosk.com";
navInfo.Send(1);
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top