home *** CD-ROM | disk | FTP | other *** search
/ Share Gallery 1 / share_gal_1.zip / share_gal_1 / DT / DT023B.ZIP / INC-PROG.LZH / ACTIONS.LZH / MACROS.ACT < prev    next >
Text File  |  1991-02-11  |  445b  |  22 lines

  1. Descript;Action Macros
  2. editText;Edit text file
  3.     !edit %f
  4. incStart;InContext Startup Macro
  5.     !keyStuff "\@T"
  6. printTxt;Print text file
  7.     copy %f prn:
  8.     echo   >prn:
  9. runProg;Execute program
  10.     !menu "Are any parameters to be passed to the program?"
  11.         !choice "Yes"
  12.             !query 1 "Enter parameters for '%f' and press ENTER" 72
  13.             %f %1
  14.             !pause
  15.         !choice "No"
  16.             %f
  17.             !pause
  18.     !endMenu
  19.     !resetMouse
  20. viewText;View text file
  21.     !view %f
  22.