home *** CD-ROM | disk | FTP | other *** search
- /* 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;
-