home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fish 10
/
Fresh_Fish_10_2352.bin
/
new
/
gfx
/
conv
/
agaiff
/
rexx
/
splitanim.agaiff
< prev
next >
Wrap
Text File
|
1995-04-23
|
285b
|
21 lines
/* Anim2Pictures.agaiff */
/* Converts animation into single pictures */
address agaiff_rexx
options results
requestfile "Anim2Pictures - FileName.."
filename = result
if filename == "" then exit
noshow
i=0
do forever
save filename||"."||i
i=i+1
anext
if rc~=0 then exit
end;