home *** CD-ROM | disk | FTP | other *** search
AMOS Source Code | 1995-12-30 | 443 b | 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