home *** CD-ROM | disk | FTP | other *** search
- /* Test some MediaPoint Arexx commands, while the player is running */
-
- ADDRESS 'MEDIAPOINT'
- options results
-
- /*Switch of the manual control of MediaPoint*/
- CURSOR OFF
- say ''
-
- /*Get the state of the player*/
- GETSTATE
- say 'The state of the player is' result
-
- /*Get the currently shown page number*/
- GETPAGENR
- say 'The current page number is' result
-
- /*Get the number of pages in the script*/
- GETNRPAGES
- say 'The number of pages in the script is' result
-
- /*Do a little loop*/
- DO I=1 TO 5
- GOTO NEXT
- ADDRESS COMMAND WAIT 2
- END
-
- /*You can use GOTO NEXT GOTO PREV or GOTO labelname
- e.g. GOTO mainmenu */
-
- /*Exit the player*/
- QUIT
-