home *** CD-ROM | disk | FTP | other *** search
/ MACD 9 / MACD9.iso / Polminet / HTMLEdit / rexx / LoadToAWeb.hrx < prev   
Encoding:
Text File  |  1980-01-09  |  681 b   |  25 lines

  1. /*
  2. ** This is a demonstration of ARexx commands of HTML Editor v 1.2
  3. ** This script saves the currently edited file to PIPE and loads it to AWeb
  4. */
  5.  
  6. /*
  7. ** This script is just an example.  There are many things to do like checking
  8. ** if AWeb is running and, if not running it.  Unfortunately I do not know
  9. ** ARexx very well so I cant write such a script.  If You are familiar with
  10. ** ARexx You can write such a script and send it to me.  I'll include it in
  11. ** next version of this program.
  12. */
  13.  
  14. options results
  15. address 'HTMLEDIT.1'
  16.  
  17. /* save this file to ram */
  18. 'save pipe:temp.html'
  19.  
  20. address 'AWEB.1'
  21.  
  22. /* now open this file in AWeb */
  23. 'OPEN file://localhost/pipe:temp.html RELOAD'
  24.  
  25.