home *** CD-ROM | disk | FTP | other *** search
/ World of Graphics / WOGRAPH.BIN / 285.GIFV.SLM < prev    next >
Text File  |  1993-02-17  |  886b  |  29 lines

  1. ;
  2. ; GIFV.SLM
  3. ; This is a COOL script file that allows for COMPLETE control over your
  4. ; slide show presentation (Business like!). It allows you to go forwards
  5. ; and backwards through your GIF files in your current directory. This
  6. ; script shows how to use the MOUSE related commands:
  7. ;                     Mouse-Control-On
  8. ;                     Mouse-Control-Off
  9. ;                     IfButton-L
  10. ;                     IfButton-R
  11. ;                     IfButton-C
  12. ; NOTE: If you try to go too far forwards or backwards, the script will
  13. ;       exit. See GIFV.SLN to see how to fix this quirk!
  14. ;
  15.         mouse-control-on
  16.         change-path *.gif
  17.         loadnext :exit
  18. :loop
  19.         ifbutton-l :doprev
  20.         Ifbutton-r :donext
  21.         Ifbutton-c :exit
  22. :doprev
  23.         loadprev :exit
  24.         goto :loop
  25. :donext
  26.         loadnext :exit
  27.         goto :loop
  28. :exit
  29.