onstop Event

Sequencer Control

Called when the sequencer is stopped. At this point, the specified script code is run.

Syntax

VBScriptSub sequencerObj_onstop( actionsetname )
script
End Sub
JScript<SCRIPT LANGUAGE="javascript" FOR="sequencerObj" EVENT="onstop( actionsetname ) ">
<!--script-->
</SCRIPT>

Possible Values

actionsetname
Name of the action set stopped by the sequencer.

Example

In the following example, actionsetname is a variable set to the name of the action set that was last stopped. The example tests the actionsetname parameter and conditionally executes a script based on which action set has been stopped.

Sub Sequencername_onstop(actionsetname)
    If actionsetname="ActionSet1" then
        Call Seq("ActionSet2").play
    Else
        Call Seq("ActionSet1").play
    Endif
End Sub

Top of Page Top of Page
© 2000 Microsoft and/or its suppliers. All rights reserved. Terms of Use.