home *** CD-ROM | disk | FTP | other *** search
- 10 cls
- 20 finished = 0
- 30 x = rnd(-1)
- 40 sub m()
- 50 morse "Mac OS Workshop",16,40,13,700
- 60 end sub
- 70 sub s()
- 80 say "Mac OS Workshop:",210,50,3
- 90 end sub
- 100 sub q()
- 110 finished = 1
- 120 end sub
- 130 call "wintitle","Dotty"
- 140 graphics window 25,25,200,200
- 150 menu 4,"Commands","Morse code;Speech;Quit","m();s();q()"
- 160 while not finished
- 170 doevents()
- 180 graphics color rnd(1)*100,rnd(1)*100,rnd(1)*100
- 190 graphics pset rnd(1)*200,rnd(1)*200
- 200 wend
- 210 graphics -1
- 220 call "wintitle","Graphics"
- 230 menu 4,""
- 240 end
-