Starts the sequencer or resumes it if the sequencer was paused. If the sequencer is playing, the call is ignored.
Syntax
VBScript call sequencerObj( "actionsetname" ) .Play( ) JScript sequencerObj.item( "actionsetname" ).Play( );
Parameters
- actionsetname
- Name of the action set.
Example
The following example starts a sequencer described by the Seq object when the page loads. This sequencer calls the MoveButton action set at time 0, and calls the named procedure MoveButton.
<SCRIPT LANGUAGE=vbscript> <!-- Sub window_onLoad Call Seq("MoveButton").Play() End Sub --> </SCRIPT>
Top of Page
© 2000 Microsoft and/or its suppliers. All rights reserved. Terms of Use.