home *** CD-ROM | disk | FTP | other *** search
- /* test for ldp driver you must have ldp running first! */
- /* just hit RETURN to go to next command in the test sequence! */
- address 'LDP'
- options prompt "Next?"
- say ' ** LDP ARexx driver test **'
- call getin
- say 'forward play...'; 'forward normal'; call getin
- say 'forward step...'; 'forward step'; call getin
- say 'forward step...'; 'forward step'; call getin
- say 'forward slow...'; 'forward slow'; call getin
- say 'forward fast...'; 'forward fast'; call getin
- say 'forward scan... (please scan past frame 12000)'; 'forward scan'; call getin
- say 'reverse play...'; 'reverse normal'; call getin
- say 'reverse step...'; 'reverse step'; call getin
- say 'reverse step...'; 'reverse step'; call getin
- say 'reverse fast...'; 'reverse fast'; call getin
- say 'reverse slow...'; 'reverse slow'; call getin
- say 'reverse scan...'; 'reverse scan'; call getin
- say 'still...' ; 'still'; call getin
- say 'address command'; 'address' ; say'frame= 'rc
- call getin
- say 'vplayer command'; 'vplayer' ; say 'player type= 'rc
- call getin
- say 'play sequence 5000 5100'; 'play 5000 5100'; call getin
- say 'play sequence 24000 24250'; 'play 24000 24250'; call getin
- say 'play sequence 6000 5900'; 'play 6000 5900'; call getin
- say 'init player...'; 'init'; call getin
- say 'search to 34090'; 'search 34090'; call getin
- say 'eject...'; 'eject'; call getin
- say 'clear all...'; 'clear'; call getin
- say 'index off'; 'index off'; call getin
- say 'index on' ; 'index on' ; call getin
- say 'ready?'; 'ready'; say'return= 'rc; call getin
- say 'QUIT!'; 'quit';
- EXIT
-
- getin:
- pull input
- if left(input,1) == 'Q' then EXIT
- else return
-
-
-
-