home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 2 / goldfish_vol2_cd1.bin / files / util / misc / irmaster / arexx / vlab_ifr_rewind_ram.rexx < prev    next >
OS/2 REXX Batch file  |  1994-08-02  |  1KB  |  44 lines

  1. /*
  2. Script für VLab <-> IR-Master
  3.  
  4. Deutsch:
  5.  
  6. Kopiert die Daten eines Durchlaufs auf die Festplatte,
  7. löscht diese Files in der RAM-Disk, benutzt den
  8. Rewind-while-Play für 5 Sekunden und spielt dann wieder ab.
  9.  
  10. Für Name_rexx muß noch der Fernbedienungsname eingefügt
  11. werden (z.B wenn Ihre Fernbed.datei 'Philips.irm' heißt :
  12. Philips_rexx )
  13.  
  14. In unserem Beispiel ist der Name des Gadget für
  15. Suchlaufrückwärts 'Prew'. Sie können natürlich auch die
  16. Gadget-Nummer eintragen (z.B 'IR_send 5') oder nach dem $
  17. Ihren eigene Benennung.
  18.  
  19. English:
  20.  
  21. Copies the data of one loop to harddisk, deletes the files
  22. in RAM: sends the rewind command, waits for 5 seconds
  23. and sends the play command
  24.  
  25. Instead of 'Name_rexx' you have to insert the name of
  26. your project (e.g. your project is named 'Philips.irm'
  27. then you have to insert 'Philips_rexx').
  28.  
  29. In this example the name of the gadgets is 'Prew' and
  30. 'Play'. You also have to edit this according to the
  31. settings of your project.
  32.  
  33. */
  34.  
  35. ADDRESS COMMAND 'Copy BUF 100 RAM:IFR#? bat:'
  36. ADDRESS COMMAND 'Delete RAM:IFR#?'
  37.  
  38. ADDRESS 'Name_rexx' 'IR_send $Prew'     
  39.  
  40. ADDRESS COMMAND wait 5   
  41.  
  42. ADDRESS 'Name_rexx' 'IR_send $Play'
  43.  
  44.