home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 026.lha / demo < prev    next >
Text File  |  1987-04-02  |  4KB  |  128 lines

  1.  
  2.              ------------------------------------------------
  3.              |                  Uedit V2.0                  |
  4.              |      Copyright (C) 1986-87, Rick Stiles      |
  5.              | (S=Shift,A=Alt,C=Ctl,BS=BackSpace,KP=KeyPad) |
  6.              ------------------------------------------------
  7.  
  8.       + Edit 20 files at once (or up to 55, if you sacrifice all buffers).
  9.       + 8 megabytes per file (or to the limit of memory).
  10.       + Cut/paste/copy with separate hilited/inverted regions in 55 buffers.
  11.       + Interlace mode and tunable RGB coloring.
  12.       + Columnar data copy/clear/insert/overlay.
  13.       + Undo accidental deletes.
  14.       + Forward and backward searching and replacing, case sensitive or non.
  15.       + Wildcard and either/or in search-strings.
  16.       + 3-keystroke sequence swaps function-keys anytime.
  17.       + Up to 7 menus, 20 items each, with optional checked menu items.
  18.       + Every menu, gadget, key, mouse function customizable.
  19.       + Save or recover editor configuration anytime.
  20.       + Program it to do things automatically at start-up.
  21.       + Learn 200 inputs: keys, gadgets, mouse-clicks, menu selections.
  22.       + Do a mail-merge or auto-edit a list of documents using Learn Mode.
  23.       + Save & load learned sequences.
  24.       + Execute DOS commands, getting results optionally.
  25.       + Get directory listings - click-load files from directory lists.
  26.       + Sleeps so other tasks run fast.
  27.       + Print hilited region (through Preferences or straight to printer).
  28.       + Speak hilited region and error messages.
  29.       + Close Box is programmable, 8 in all using shift keys.
  30.       + 4 invisible "gadgets" in message line, programmable, 32 in all.
  31.       + Auto-indent, auto-backup, word-wrap, right-justify, reformatting etc.
  32.       + Click Title Bar for tiny window for access to CLI and icons.
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50. <shftAlt-1:
  51.            while (compile) nothing
  52.            putMsg(" ")
  53.            do (n54,0,19) if (not isEmpty(buf[n54])) freeBuf(curFile)
  54.            runKey(shftAlt-2)
  55.            runKey(shftAlt-3)
  56.            >
  57. <shftAlt-2:
  58. loadFile("demo")
  59. toggle(curFile)
  60. freeBuf(curFile)
  61. speak("Hi there,  I am You Edit, an extremely powerful text editurr, for the Amiga")
  62. speak("I don't believe any other microcomputer, has an editurr quite like mee")
  63. toggle(curFile)
  64. speak("I can edit up to twenty files at once, but that is just the beginning")
  65. speak("You can make, powerful commands for me, and define, my menues, completely")
  66. speak("You can program me, to load your files, and do big things, automatically")
  67. runKey(shft-esc)
  68. runKey(normal-help)
  69. speak("This is my Helpp file, press the Helpp key, and see it, any time")
  70. while (vScroll(ePage)) refreshDisplay
  71. runKey(normal-help)
  72. toggle(curFile)
  73. runKey(shft-esc)
  74.  
  75. runKey(alt-`)
  76. if (not getFlag(curfile,columnar)) flipflag(curFile,columnar)
  77. moveCursor(curFile,sFile)
  78. moveCursor(curFile,downLine)
  79. do (n54,1,13) moveCursor(curFile,eChar)
  80. equateLoc(curFile,sHilite,atCursor)
  81. do (n54,1,5) moveCursor(curFile,eLine)
  82. equateLoc(curFile,eHilite,atCursor)
  83. refreshDisplay
  84. moveCursor(curFile,eWord)
  85. moveCursor(curFile,sWord)
  86. equateLoc(curFile,sInvert,atCursor)
  87. do (n54,1,5) moveCursor(curFile,eLine)
  88. equateLoc(curFile,eInvert,atCursor)
  89. refreshDisplay
  90. moveCursor(curFile,sHilite)
  91. runKey(shftCtl-3)
  92. do (n54,1,5) {
  93.    moveCursor(curFile,downLine) moveCursor(curFile,downLine)
  94.    do (n53,1,8) moveCursor(curFile,eChar)
  95.    runKey(shftCtl-5)
  96.    refreshDisplay
  97. }
  98. runKey(alt-`)
  99. speak("You can select, from twenty four, color combinations, and save it for next time")
  100. equateLoc(curFile,atCursor,sInvert)
  101. do (n54,1,3) toggle(color)
  102. putMsg(" ")
  103. speak("You can read about, my advanced features")
  104. speak("But I am easy to use, and very powerful, using just my menues, and Helpp file")
  105. >
  106.  
  107. <shftAlt-3:
  108. do (n54,0,19) if (not isEmpty(curFile)) freeBuf(curFile)
  109. insertRgn(curFile,sFile,
  110. "
  111.                                  Try me!
  112.  
  113.             Use the right mouse-button to check out my menus.
  114.  
  115.                        Press the Help-key for help.
  116.  
  117.                     Press it again to get rid of Help.
  118.  
  119.             Press the CTRL-key and CLICK on these file names:
  120.  
  121.                   Help!    Config!    demo   Cheat-Sheet
  122. ",all)
  123. vScroll(sFile)
  124. refreshDisplay
  125. loadConfig("s:Data!")
  126. >
  127.  
  128.