home *** CD-ROM | disk | FTP | other *** search
/ Amiga Times / AmigaTimes.iso / programme / trionbbs110 / Trion / menus / browse_rip.src next >
Encoding:
Text File  |  1998-10-06  |  1.9 KB  |  123 lines

  1.  
  2. ; The menu in which a File Browse methode is selected
  3.  
  4.  
  5. Menu "Browse_rip.menu"
  6.  
  7. flags  hotkeyable, noscreen
  8. level  0 - 255 , "Browse.Ansi"
  9. prompt 0 , 0 - 255 , "|Browse Menu : "
  10. prompt 1 , 0 - 255 , "|Browse Menu : "
  11.  
  12. BEGIN     ; Start the command definitions
  13.  
  14. BuildScreen
  15.    CliDoor  "trion:utils/ripdoor ~50 10"
  16. EndCmd
  17.  
  18. Cmd "F"
  19.    ClrScr
  20.    BrowseFindGlobal
  21.    PreviousMenu                   ;   GotoMenu "File.Menu"
  22. EndCmd
  23.  
  24. Cmd "Z"
  25.    ClrScr
  26.    BrowseFindFile
  27.    PreviousMenu                   ;   GotoMenu "File.Menu"
  28. EndCmd
  29.  
  30. Cmd "L"
  31.    ClrScr
  32.    BrowseAlpha
  33.    PreviousMenu                   ;   GotoMenu "File.Menu"
  34. EndCmd
  35.  
  36.  
  37. Cmd "C"
  38.    ClrScr
  39.    BrowseChrono
  40.    PreviousMenu                   ;   GotoMenu "File.Menu"
  41. EndCmd
  42.  
  43. Cmd "R"
  44.    ClrScr
  45.    BrowseAlphaReverse
  46.    PreviousMenu                   ;   GotoMenu "File.Menu"
  47. EndCmd
  48.  
  49.  
  50. Cmd "T"
  51.    ClrScr
  52.    BrowseChronoReverse
  53.    PreviousMenu                   ;   GotoMenu "File.Menu"
  54. EndCmd
  55.  
  56.  
  57. Cmd "N"
  58.    ClrScr
  59.    BrowseChronoNew
  60.    PreviousMenu                   ;   GotoMenu "File.Menu"
  61. EndCmd
  62.  
  63.  
  64. Cmd "G"
  65.    ClrScr
  66.    BrowseChronoGLobalNew
  67.    PreviousMenu                   ;   GotoMenu "File.Menu"
  68. EndCmd
  69.  
  70.  
  71. Cmd "A"
  72.    ClrScr
  73.    BrowseChronoGLobal
  74.    PreviousMenu                   ;   GotoMenu "File.Menu"
  75. EndCmd
  76.  
  77.  
  78. Cmd "H"
  79.    ClrScr
  80.    BrowseAlphaGLobal
  81.    PreviousMenu                   ;   GotoMenu "File.Menu"
  82. EndCmd
  83.  
  84. Cmd "V"
  85.    ClrScr
  86.    BrowseChronoUnvalidated
  87.    PreviousMenu                   ;   GotoMenu "File.Menu"
  88. EndCmd
  89.  
  90.  
  91. Cmd "U"
  92.    ClrScr
  93.    BrowseChronoUnvalidatedGlobal
  94.    PreviousMenu                   ;   GotoMenu "File.Menu"
  95. EndCmd
  96.  
  97. Cmd "M"
  98.    ClrScr
  99.    BrowseAlphaNew
  100.    PreviousMenu                   ;   GotoMenu "File.Menu"
  101. EndCmd
  102.  
  103. Cmd "B"
  104.    ClrScr
  105.    BrowseAlphaGlobalNew
  106.    PreviousMenu                   ;   GotoMenu "File.Menu"
  107. EndCmd
  108.  
  109.  
  110.  
  111. Cmd ""
  112.    PreviousMenu                   ;   GotoMenu "File.Menu"
  113. EndCmd
  114.  
  115.  
  116. Cmd "Q"
  117.    PreviousMenu                   ;   GotoMenu "File.Menu"
  118. EndCmd
  119.  
  120.  
  121. END
  122.  
  123.