Name Property
The Name property contains the name of the favorite.
Syntax
SiteKiosk.Favorites.Item(index).Name [=str]
|
Possible Values
String that specifies or retrieves the description.
|
The property is read/write.
Remarks
Examples
The following example shows the name of the first existing favorite in an alert window.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
alert(SiteKiosk.Favorites.Item(1).Name);
</SCRIPT>
|
Applies to
SiteKiosk v5.5 (and later versions).
Back to top