home *** CD-ROM | disk | FTP | other *** search
- :menulabel
- cls bright yellow on blue
- drawbox 6 32 16 46 0 green on white fill black
- scrput 8 35 bright yellow on black MAIN MENU
- scrput 9 34 bright yellow on black ───────────
- scrput 10 34 bright yellow on black (D)irectory
- scrput 11 34 bright yellow on black (H)elp
- scrput 12 34 bright yellow on black (T)hingy
- scrput 13 34 bright yellow on black -
- scrput 14 34 bright yellow on black F1 - Exit
- screen 15 34
- inkey %%menuevar
-
- iff "%menuevar" == "d" then
- cls^dir^pause^goto menulabel
- elseiff "%menuevar" == "h" then
- help^goto menulabel
- elseiff "%menuevar" == "t" then
- echo hello^beep^pause^goto menulabel
- elseiff "%menuevar" == "?" then
- beep 200 4^goto menulabel
- elseiff "%menuevar" == "@59" then
- cls bright yellow on black^quit
- else
- beep 200 4
- goto menulabel
- endiff
-