home *** CD-ROM | disk | FTP | other *** search
/ Amiga Times / AmigaTimes.iso / programme / trionbbs110 / Trion / menus / editor_rip.src < prev    next >
Encoding:
Text File  |  1998-10-06  |  687 b   |  49 lines

  1.  
  2. ; Select an editor to write (echo)mail
  3.  
  4.  
  5. Menu "Editor_rip.menu"
  6.  
  7. flags  hotkeyable, noscreen
  8. level  0 - 255 , "Editor.Ansi"
  9. prompt 0 , 0 - 255 , "|Editor Menu : "
  10. prompt 1 , 0 - 255 , "|Editor Menu : "
  11.  
  12. BEGIN     ; Start the command definitions
  13.  
  14.  
  15. BuildScreen
  16.    CliDoor  "trion:utils/ripdoor ~50 15"
  17. EndCmd
  18.  
  19.  
  20. Cmd "0"
  21.    ChangeEditor "0"                     ;select line editor
  22.    PreviousMenu
  23. EndCmd
  24.  
  25. Cmd "1"
  26.    ChangeEditor "1"                     ;select line editor OR local editor
  27.    PreviousMenu
  28. EndCmd
  29.  
  30. Cmd "2"
  31.    ChangeEditor "2"                     ;select 'trion:doors/fsed/fsed2'
  32.    PreviousMenu
  33. EndCmd
  34.  
  35.  
  36.  
  37. Cmd ""
  38.    PreviousMenu
  39. EndCmd
  40.  
  41.  
  42. Cmd "Q"
  43.    PreviousMenu
  44. EndCmd
  45.  
  46.  
  47. END
  48.  
  49.