home *** CD-ROM | disk | FTP | other *** search
/ The AGA Experience 2 / agavol2.iso / software / utilities / comms / html-heaven / arexx / html-frexxed.rexx < prev    next >
OS/2 REXX Batch file  |  1996-01-08  |  536b  |  19 lines

  1. /* HTML-Helper Arexx script for FrexxEd
  2.  * Ver      : 1.0 (7th January 1996)
  3.  * Copyright: Michiel Willems (InterNet: michiel@aobh.xs4all.nl)
  4.  * Function : Pass on the HTML commands from HTML-Helper to FrexxEd.
  5.  * Input    : HTMLCMD - The HTML command to be inserted.
  6. */
  7.  
  8. OPTIONS RESULTS                             /* enable return codes     */
  9. PARSE ARG MYCMD HTMLCMD
  10.  
  11. HTMLCMD = SUBSTR(HTMLCMD,2, LENGTH(HTMLCMD)-1) /* strip leading space      */
  12.  
  13. Portname = 'FREXXED.1'
  14. ADDRESS VALUE PortName
  15. '
  16. WindowToFront();
  17. Output('HTMLCMD');
  18. '
  19.