home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AMOS PD CD
/
amospdcd.iso
/
351-375
/
apd372
/
slideshow
/
tools
/
compacter.amos
/
compacter.amosSourceCode
Wrap
AMOS Source Code
|
1991-12-31
|
565b
|
27 lines
' COMPACTER
'
' IFF Picture compacter for use with Slide Show Manager
'
' 30th December 1991
'
Cls : DV$="df0:"
Print "Enter number of FIRST picture to compact:"
Print : Print : Input F
Print "Enter number of LAST picture to compact:"
Print : Print : Input N
Print : Print
Print "Insert disk with pictures in df0:"
Print "and press a key"
Wait Key
Cls
Print "Now compacting: please wait"
For X=F To N
PIC$=Str$(X) : L=Len(PIC$) : PIC$=Right$(PIC$,L-1)
FF$=DV$+PIC$
Load Iff FF$,1
Wait Vbl : Wait Vbl
Save Iff FF$,1
Next
Cls
Print "Operation now complete"
End