home *** CD-ROM | disk | FTP | other *** search
- /* JACOsub PLAYSTART command demonstration. */
-
- options results
- address 'JACOsub'
- 'PLAYSTART'
-
- if result then
- say 'script play could not be started.'
- else
- say 'script play in progress!'
- exit result
-
- /*
- This is how one causes JACOsub to start playing a script.
- The command PLAYSETUP *must* be given prior to issuing a PLAYSTART
- command.
-
- If JACOsub's play screen is hidden, you do NOT need to send a
- SCREENTOFRONT command before PLAYSTART. PLAYSTART automatically brings
- the play screen to the front.
-
- PLAYSTART returns RESULT=0 if playing commenced, or RESULT=1 if a
- problem occurred (such as: PLAYSETUP wasn't performed first, or
- PLAYSETUP didn't complete).
- */
-