home *** CD-ROM | disk | FTP | other *** search
- /*
- ** This is a demonstration of ARexx commands of HTML Editor v 1.2
- ** This script saves the currently edited file to PIPE and loads it to AWeb
- */
-
- /*
- ** This script is just an example. There are many things to do like checking
- ** if AWeb is running and, if not running it. Unfortunately I do not know
- ** ARexx very well so I cant write such a script. If You are familiar with
- ** ARexx You can write such a script and send it to me. I'll include it in
- ** next version of this program.
- */
-
- options results
- address 'HTMLEDIT.1'
-
- /* save this file to ram */
- 'save pipe:temp.html'
-
- address 'AWEB.1'
-
- /* now open this file in AWeb */
- 'OPEN file://localhost/pipe:temp.html RELOAD'
-
-