home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
World of Graphics
/
WOGRAPH.BIN
/
273.GIFV.SLD
< prev
next >
Wrap
Text File
|
1993-02-17
|
571b
|
22 lines
;
; GIFV.SLD
; This script will take ALL GIF files in the current DIR that are INTERLACED
; and re-write them so that they are NON-Interlaced GIF Files. It
; will also (for the heck of it!) write out a BMP file of the same
; picture for use within Windows. It also shows how to use the SKIPNext
; command. SkipPrev uses the same concept!
;
slide-type-normal
change-path *.gif
:loop
ifint :doint
skipnext :exit
goto :loop
:doint
LOADNEXT :EXIT
WRITE B
WRITE G
goto :loop
:exit