home *** CD-ROM | disk | FTP | other *** search
- /* RandomBackground.dopus5 */
- options results
- signal on halt
- address command 'Copy "DOplus:tutorial/Arexx Tutorial/TuteRexx/Extras/#?.iff" T: QUIET CLONE'
- if ~show('l','rexxsupport.library') then
- call addlib('rexxsupport.library',,-30)
- address 'DOPUS.1'
- pattern = 'T:#?.iff'
- do forever
- dopus set background '"'pattern'"' desktop custom
- dopus refresh background custom
- call delay(1500)
- end
- halt:
- dopus refresh background
- address command 'Delete T:#?.iff QUIET'
- exit
-