home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Simtel MSDOS - Coast to Coast
/
simteldosarchivecoasttocoast.iso
/
gif
/
gifv412.zip
/
GIFV.SLN
< prev
next >
Wrap
Text File
|
1993-02-18
|
975b
|
39 lines
;
; GIFV.SLN
; This is a COOL script file that allows for COMPLETE control over your
; slide show presentation (Business like!). It allows you to go forwards
; and backwards through your GIF files in your current directory. This
; script shows how to use the MOUSE related commands:
; Mouse-Control-On
; Mouse-Control-Off
; IfButton-L
; IfButton-R
; IfButton-C
;
mouse-control-on
change-path *.gif
loadnext :exit
:loop
ifbutton-l :doprev
Ifbutton-r :donext
Ifbutton-c :doexit
goto :exit
:doexit
end
:doprev
loadprev :exitPrev
goto :loop
:donext
loadnext :exitnext
goto :loop
:exitPrev
beep
loadnext :exit
goto :loop
:exitnext
beep
skipprev :exit
loadnext :exit
goto :loop
:exit