home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga MA Magazine 1998 #3
/
amigamamagazinepolishissue1998.iso
/
maksiu
/
utils
/
eaissue3b.lha
/
Source_Code
/
UN_Window_Demo.AMOS
/
UN_Window_Demo.amosSourceCode
Wrap
AMOS Source Code
|
1995-12-30
|
443b
|
28 lines
Cls 13
For W=1 To 3
Wind Open W,(W-1)*96,50,10,10,1
Paper W+3 : Pen W+6 : Clw
Print "Window";W
Next W
Window 1 : Print "This is 1"
PAUSE
WIPE
Window 2 : Print "This is 2"
PAUSE
WIPE
Window 3 : Print "This is 3" : Print "Bye for now!"
PAUSE
WIPE
End
Rem ***
Procedure WIPE
Def Scroll 1,0,0 To 320,200,1,0
For P=1 To 20
Vscroll 2
Next P
End Proc
Rem ***
Procedure PAUSE
While Mouse Key<>1 : Wend
Wait 20
End Proc