home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
TopWare 18: Liquid
/
Image.iso
/
liquid
/
top1136
/
gifv.sld
< prev
next >
Wrap
Text File
|
1993-10-05
|
598b
|
23 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
adjust-for-windows
WRITE B
WRITE G
goto :loop
:exit