home *** CD-ROM | disk | FTP | other *** search
- /* Skandalfo CD Player ARexx script
- ** Delay autoplay for kludging around
- ** some CDFileSystems which stop the CD
- ** on insertion and which detect the
- ** insertion in a slower way than SCDP.
- */
-
- OPTIONS RESULTS
-
- AUTOPLAY
- AP=RESULT
-
- IF AP=0 THEN RETURN
-
- AUTOPLAY 0
-
- /* Hoping this program will have reached here
- ** in half a second (Big Kludge)
- */
- USERACTION
-
- ADDRESS COMMAND "Wait 10"
-
- USERACTION
- UA=RESULT
-
- AUTOPLAY 1
-
- IF ~UA THEN PLAY
-
-