home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AMOS PD CD
/
amospdcd.iso
/
sourcecode
/
various
/
fade_in_picture.amos
/
fade_in_picture.amosSourceCode
Wrap
AMOS Source Code
|
1993-01-08
|
700b
|
20 lines
'This Proc Will fade in any picture
'
'File$ is the name of your file
'C0lours is the number of colours in your picture
'Speed is the speed you wish your picture to be faded in
' (The Higher the number the slower it fades in)
'
'Eg.
' _FADE_IN["Amos_Data:Iff/Amospic.iff",32,8]
'
Procedure _FADE_IN[FILE$,C0LOURS,SPEED]
' Proc Written by Brett George
Screen Open 0,320,256,C0LOURS,Lowres : Flash Off : Cls 0 : Hide On
Screen Open 1,320,256,C0LOURS,Lowres : Flash Off : Cls 0
Auto View Off : Load Iff FILE$,0
Screen 1 : Get Palette(0) : Screen 0
For Z=0 To C0LOURS-1 : Colour Z,0 : Next
Screen To Front 0 : Auto View On : View
Fade SPEED To 1 : Wait SPEED*15
End Proc