home *** CD-ROM | disk | FTP | other *** search
/ Global Amiga Experience / globalamigaexperience.iso / compressed / utilities / irmasterdemo.lha / LControl130 / ARexx / Demo.rexx
OS/2 REXX Batch file  |  1994-11-02  |  910b  |  34 lines

  1. /*
  2.  
  3.     Simples ARexx-Demo                      Simple ARexx-Demo
  4.  
  5.     Voraussetzungen:                        Requirements:
  6.  
  7.     LControl muß aktiv sein                 LControl must be started.
  8.  
  9. */
  10.  
  11. options results             /* Wird für LC_GetCounter       Is needed by LC_Getcoutner.
  12.                                benötigt, damit in           Only if this option is active
  13.                                RESULT auch der Couter-      Result codes are passed through
  14.                                stand übergeben wird         by AREXX*/
  15.  
  16. ADDRESS 'LControl_rexx'     /* Neues Ziel für AREXX-        New host address: LControl
  17.                                Kommandos: LControl          */
  18.  
  19.  
  20. ADDRESS COMMAND WAIT 2      /* Warte 2 Sekunden             Wait 2 secs*/
  21.  
  22. SAY "PLAY"
  23. LC_PLAY
  24. ADDRESS COMMAND WAIT 2      /* Warte 2 Sekunden             Wait 2 secs*/
  25. SAY "STOP"
  26. LC_STOP
  27.  
  28. SAY "QUIT"
  29. LC_QUIT
  30.  
  31.  
  32. exit
  33.  
  34.