OnUpdatePosition Event



 
Fires when the slide position changes.


Syntax

    SmoothSlide.OnUpdatePosition = handler
Parameters
    af_Pos Float value that contains the current position.
Remarks
    The object that caused the event can be referenced in the event function using "this".
Examples
    The following example creates and starts a smooth slide.

    <div id="sldiv" style="position:absolute;left:0;">
    <img src="myimage.gif" alt="image">
    </div>
    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    myslide = SiteKiosk.Effects.CreateSmoothSlide();
    myslide.StartPos = 0;
    myslide.EndPos = 200;
    myslide.Rate = 100;
    myslide.Duration = 2000;
    myslide.OnUpdatePosition = UpdatePosition;
    myslide.Start();
    function UpdatePosition(pos)
    {
       sldiv.style.pixelLeft = parseInt(pos);
    }
    </SCRIPT>
    

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

Back to top