home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 16 / 16.iso / t / t264 / 1.img / MENU.BAT < prev    next >
Encoding:
DOS Batch File  |  1993-10-07  |  1.9 KB  |  78 lines

  1. @echo off
  2. echo off
  3. cls
  4. echo            Here's an example of how to create a menu using Sparkle.
  5. :
  6. :---- FIRST display a window (using Sparkle's option #6).  We'll first
  7. :     display some color.  We'll then display a shadowed window (shadow = "-2").
  8. :
  9. sparkle 6 6 1 22 80 32 32 /
  10. sparkle 6 7 10 20 71 79 -2 /... Main Menu ...
  11. :
  12. :---- SECOND, print the 4 menu options (plus Quit)
  13. :
  14. sparkle 5 10  31   112 /── This is option 1 ──
  15. sparkle 5 12 31   112 /── This is option 2 ──
  16. sparkle 5 14 31   112 /── This is option 3 ──
  17. sparkle 5 16 31   112 /── This is option 4 ──
  18. sparkle 5 18 31   112 /──       Quit       ──
  19. :
  20. :---- THIRD, tell Sparkle to turn this into a VERTICAL Bar menu (direction = 1).
  21. :     We use Sparkle's option #2 (bar menu).  And we tell Sparkle to look for
  22. :     menu options starting at row 10, column 30 (top left) to row 18 column 53
  23. :     (bottom right).  We also tell Sparkle to highlight options using color
  24. :     15 (bright white on black).
  25. :
  26. sparkle 2 10 30 18 53 15 1
  27. :
  28. :---- If this was YOUR menu, you'd edit the following lines to do what YOU
  29. :     want to as each option is chosen.
  30. :
  31. If Errorlevel 88 Goto Error
  32. If Errorlevel 27 Goto EscPressed
  33. If Errorlevel  5 Goto 5thOption
  34. If Errorlevel  4 Goto 4thOption
  35. If Errorlevel  3 Goto 3rdOption
  36. If Errorlevel  2 Goto 2ndOption
  37. If Errorlevel  1 Goto 1stOption
  38. Goto End
  39. :
  40. :Error
  41. :
  42. echo An error must have occurred.  Possibly someone changed this and I can't find
  43. echo or process the menu.  Sorry.  Check the batch file.
  44. goto end
  45. :
  46. :EscPressed
  47. :
  48. echo You pressed Escape.
  49. goto end
  50. :
  51. :1stOption
  52. :
  53. echo You selected the 1st option
  54. goto end
  55. :
  56. :2ndOption
  57. :
  58. echo You selected the 2nd option
  59. goto end
  60. :
  61. :3rdOption
  62. :
  63. echo You selected the 3rd option
  64. goto end
  65. :
  66. :4thOption
  67. :
  68. echo You selected the 4th option
  69. goto end
  70. :
  71. :5thOption
  72. :
  73. echo You selected the 5th option -- Quit
  74. :
  75. :End
  76. :
  77.  
  78.