SiteKiosk Documentation
One Step Back

OnDownloadSuppressed Event




Fires when a download has been suppressed.


Syntax

    SiteKiosk.Network.Downloads.OnDownloadSuppressed = handler
    
Parameters
    urlString containing the suppressed URL.
Remarks
    The object that caused the event can be referenced in the event function using "this".
Examples
    The following example shows an alert window when a download has been suppressed.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    SiteKiosk.Network.Downloads.OnDownloadSuppressed = OnDownloadSupp;
    function OnDownloadSupp(url)
    {
       alert(url + " has been suppressed.");
    }
    </SCRIPT>
    

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

Back to topBack to top

© 1997-2010 PROVISIO - Aventura, USA & Muenster, Germany - SiteKiosk DevTeam