Type Property



 
The Type property contains the type of the logfile message.


Syntax

    [long=] SiteKiosk.Logfile.LastMessages.Item(index).Type
    
Possible Values
    Long value that retrieves the type.

    The property is read only.
Remarks
    Possible types are:

    Generic : 0
    SiteKioskGeneric : 1000
    SiteKioskStarted : 1001
    SiteKioskClosed : 1002
    SiteKioskCrashed : 1003
    Navigation : 1004
    FrameNavigation : 1005
    ScreensaverActivated : 1006
    ScreensaverDeactivated : 1007
    Printer : 1008
    EMail : 1009
    DialUpGeneric : 1010
    DialUpConnected : 1011
    DialUpDisconnected : 1012
    Script : 1013
    Custom Event : 1014
    EmergencyReboot : 1015
    SiteSkinGeneric : 1100
    SiteCashGeneric : 2000
    SiteCashStarted : 2001
    SiteCashClosed : 2002
    SiteCashSessionBegin : 2003
    SiteCashSessionEnd : 2004
    SiteCashCredit : 2005
    SiteCashDebit : 2006
    SiteCashClearance : 2007
    SiteCashCashAmount : 2008
    SiteCashDevicesGenric : 2100
    ACOSSmartCard : 2101
    EMP800 : 2102
    PCCredit : 2103
    DummyDevice : 2104
    GlobalBill : 2105
    SiteCafe : 2106
    CCTalk : 2107
    CodeAccess : 2108
    MMICoinCollector : 2109
    SmileyNV4 : 2110
    HW200USB : 2111
    CreditCard : 2112
    MobilHandel : 2113
    AVTKrone : 2114
    TimeLimitter : 2115
    Azkoyen : 2116
    LoeweIOCard : 2117
    MicrocoinTL4 : 2118
    PulseDevice : 2119
    CointUSBInterface : 2120
    SiteCoachGeneric : 3000
    SiteDogGeneric : 4000
    SiteCamGeneric : 5000
    SiteRemoteGeneric : 6000
    SiteRemoteStartup : 6001
    SiteRemoteShutdown : 6002
    SiteRemoteInvalidTime : 6003
    SiteRemoteTrafficExceeded : 6004
    SiteRemoteLicenseExceeded : 6005
    SiteRemoteLogLimiter : 6006
    SiteRemoteErrorLimiter : 6007
    SiteRemoteMachineTimeout : 6008
    SiteRemoteKioskNotRunning : 6009
    RemoteClientStartup : 7000
    RemoteClientShutdown : 7001
    SystemActivityEvent : 7002
    ApplicationStarted : 7005
    ApplicationClosed : 7006
    SynchronizationStarted : 8000
    SynchronizationFinished : 8001
    SynchronizationSuspended : 8002
    SynchronizationResumed : 8003
Examples
    The following example shows the type of the first message in an alert window.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    alert(SiteKiosk.Logfile.LastMessages.Item(1).Type);
    </SCRIPT>

Applies to
    SiteKiosk v6.0 (and later versions).

Back to top