home *** CD-ROM | disk | FTP | other *** search
- cls
-
- color 219
- fillrect 50,220 to 70, 239
- color 54
- fillrect 90,220 to 110,239
- color 96
- fillrect 130,220 to 150,239
- color 155
- fillrect 170,220 to 190,239
- color 21
- fillrect 210,220 to 230,239
- rect 250,220 to 270,239
-
- while true
- if mouseY < 200 then
- if button then
- fillcircle mouseX, mouseY, 5
- endif
- endif
-
- if mouseY > 200 then
- if clickrect (50,220 to 70, 239) then
- color 219
- endif
- if clickrect (90,220 to 110,239) then
- color 54
- endif
- if clickrect (130,220 to 150,239) then
- color 96
- endif
- if clickrect (170,220 to 190,239) then
- color 155
- endif
- if clickrect (210,220 to 230,239) then
- color 21
- endif
- if clickrect (250,220 to 270,239) then
- color 233
- endif
-
- endif
- wend
-
-
- end