home *** CD-ROM | disk | FTP | other *** search
- /*
- Script für VLab <-> IR-Master
-
- Deutsch:
-
- Kopiert die Daten eines Durchlaufs auf die Festplatte,
- löscht diese Files in der RAM-Disk, benutzt den
- Rewind-while-Play für 5 Sekunden und spielt dann wieder ab.
-
- Für Name_rexx muß noch der Fernbedienungsname eingefügt
- werden (z.B wenn Ihre Fernbed.datei 'Philips.irm' heißt :
- Philips_rexx )
-
- In unserem Beispiel ist der Name des Gadget für
- Suchlaufrückwärts 'Prew'. Sie können natürlich auch die
- Gadget-Nummer eintragen (z.B 'IR_send 5') oder nach dem $
- Ihren eigene Benennung.
-
- English:
-
- Copies the data of one loop to harddisk, deletes the files
- in RAM: sends the rewind command, waits for 5 seconds
- and sends the play command
-
- Instead of 'Name_rexx' you have to insert the name of
- your project (e.g. your project is named 'Philips.irm'
- then you have to insert 'Philips_rexx').
-
- In this example the name of the gadgets is 'Prew' and
- 'Play'. You also have to edit this according to the
- settings of your project.
-
- */
-
- ADDRESS COMMAND 'Copy BUF 100 RAM:IFR#? bat:'
- ADDRESS COMMAND 'Delete RAM:IFR#?'
-
- ADDRESS 'Name_rexx' 'IR_send $Prew'
-
- ADDRESS COMMAND wait 5
-
- ADDRESS 'Name_rexx' 'IR_send $Play'
-
-