home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 164.lha / ARexx / RefMacro_ARexx / Ref_II / refstart.txed < prev    next >
Encoding:
Text File  |  1988-04-28  |  668 b   |  27 lines

  1. /* refstartup.txed */
  2.  
  3. /*
  4.      This is the startup file used by the reference window.
  5.    The menus are cleared so that QUIT can be replaced with
  6.    a version that clears the Reference variable from the
  7.    the ClipList. Menu items for moving around in the reference
  8.    file are also redefined.
  9. */
  10.  
  11. LOCK
  12. 'WINDOW 0 110 640 85'
  13.  
  14. l = setclip("Reference",address())
  15.  
  16. 'MENU CLEAR'
  17. 'MENU 0 Q "Quit Reference" "RefQuit"'
  18. 'MENU 2 U "Scroll Up" "UP 8"'
  19. 'MENU 2 D "Scroll Down" "DOWN 8"'
  20. 'MENU 2 T "Top of File" "TOP"'
  21. 'MENU 2 B "Bottom of File" "BOTTOM"'
  22. 'MENU 2 J "Jump to Line" "JUMP"'
  23. 'MENU 3 S "Search" "FIND"'
  24. 'MENU 3 G "Repeat Search" "FIND 1"'
  25. 'MENU 4 2 "Color" "COLOR"'
  26.  
  27.