home *** CD-ROM | disk | FTP | other *** search
/ Der Mediaplex Sampler - Die 6 von Plex / 6_v_plex.zip / 6_v_plex / DISK2 / MULTI_04 / GIFV412.ZIP / GIFV.SLF < prev    next >
Text File  |  1993-02-18  |  356b  |  16 lines

  1. ;
  2. ; GIFV.SLF
  3. ; This script shows the usage of the IFEXIST command.
  4. ; Basically if there is a file called F:\CINDY8.GIF it will
  5. ; display it, otherwise it will beep 3 times
  6. ;
  7.         slide-type-normal
  8.         ifexist f:\cindy8.gif :loadc8
  9.         goto :cont2
  10. :loadc8
  11.         load f:\cindy8.gif
  12.         goto :exit
  13. :cont2
  14.         beep 3
  15. :exit
  16.