home *** CD-ROM | disk | FTP | other *** search
- /*
- ######################################################
- # This an exampleof the use of cmd_player from AREXX #
- ######################################################
- */
- address command "Multi_Player -w"
- address "Multi_Player"
-
- say "Multi_Player demo using ARexx...Loading a song"
-
- "Play" ":modules/modules-jamcracker/demosong1"
-
- say "Press a key...."
- pull dummy
-
- say "I can stop the song!"
-
- "Stop"
-
- say "Now, we'll tell him to play a song!"
-
- "Play" ":modules/modules-TFMX/mdat.alcatraz1-2"
- "Select 2"
-
- say "The song is loaded!...It's a little jingle"
-
- say "Press a key...."
- pull dummy
-
- say "But I'll also can change the tune used, if this is a TFMX song,"
- say "with the 'Select' command!"
- say
-
- "Select 1"
-
- say "Press a key...."
- pull dummy
-
- say "I can also stop the song, with command 'Stop'"
-
- "Stop"
-
- say "Press a key...."
- pull dummy
-
- say "Of course, I can start again the song, with the command....'Start'"
-
- "Start"
-
-
- say "Press a key...."
- pull dummy
-
- say "Now, I'll exit the player! Don't forget to look at the read me file"
- "Quit"
-
-
-
-