home *** CD-ROM | disk | FTP | other *** search
/ World of Graphics / WOGRAPH.BIN / 271.GIFV.SLB < prev    next >
Text File  |  1993-02-17  |  225b  |  15 lines

  1. ;
  2. ; GIFV.SLB
  3. ; Take every GIF file on G:\ and make them GRAY pictures
  4. ;
  5.         slide-type-normal
  6.         change-path g:\*.gif
  7. :loop
  8.         loadnext :exit
  9.         Gray
  10.         Write
  11.         goto :loop
  12. :exit
  13.  
  14.  
  15.