home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AMOS PD CD
/
amospdcd.iso
/
351-375
/
apd373
/
copyright.amos
/
copyright.amosSourceCode
< prev
next >
Wrap
AMOS Source Code
|
1993-03-15
|
2KB
|
80 lines
'----------------------------------------------------------------------------
' This procedure produces the necessary copyright conditions enabling
' you to release your compiled program into the PD, ShareWare,
' or LicenseWare.
'
' If you wish to produce your own screen, you must ensure that the following
' text appears on your screen:
'
' "This program was written using AMOS"
'
' It is essential that the AMOS in the above text appears as a graphic logo.
'
' This is all we ask of you and hope you will respect our request.
'
' A small AMOS sprite can be found in the Copyright_Sprite.Abk file on this disc.
'----------------------------------------------------------------------------
'
Curs Off : Print
Centre ">>> Big copyright! <<<"
_COPYRIGHT[75]
'
Centre ">>> Small copyright! <<<"
_SMALL_COPYRIGHT[225]
'
Procedure _SMALL_COPYRIGHT[YDISPLAY]
'
Auto View Off
'
Screen Open 7,320,24,16,0 : Curs Off : Flash Off : Cls 0
Screen Display 7,,-100,,
Paste Bob 260,3,1
Paper 0 : Pen 7 : Print At(1,1);"This program was written using"
Get Sprite Palette
View : Wait Vbl
'
For Y=1 To Screen Height/2
Screen Display 7,,YDISPLAY+Screen Height/2-Y,,Y*2
Screen Offset 7,,Screen Height/2-Y
View : Wait Vbl
Next
'
Wait 100
'
For Y=Screen Height/2 To 0 Step -1
Screen Display 7,,YDISPLAY+Screen Height/2-Y,,Y*2
Screen Offset 7,,Screen Height/2-Y
View : Wait Vbl
Next
'
Screen Close 7
Auto View On
'
End Proc
'
Procedure _COPYRIGHT[YDISPLAY]
'
Auto View Off
'
Unpack 10 To 7
'
For Y=2 To Screen Height/2 Step 2
Screen Display 7,,YDISPLAY+Screen Height/2-Y,,Y*2
Screen Offset 7,,Screen Height/2-Y
View
Wait Vbl
Next
'
Wait 100
'
For Y=Screen Height/2 To 0 Step -8
Screen Display 7,,YDISPLAY+Screen Height/2-Y,,Y*2
Screen Offset 7,,Screen Height/2-Y
View
Wait Vbl
Next
'
Screen Close 7
Auto View On
'
End Proc