/*
** This is a demonstration of ARexx commands of HTML Editor v 1.2
**
** ARexx ports are named 'HTMLEDIT.1', 'HTMLEDIT.2', etc for every new
** running copy of this program
*/

options results
address 'HTMLEDIT.1'

/*
** These are some commands for TextEditor gadget
*/

/* let's paste something from clipboard */
'paste'

/* now we'll go to other position */
'line 5'
'column 5'

/* and write some text there */
'text Amiga rules'



/*
** These commands are unique for HTML Editor application
*/

/* create new file */
'newfile'

/* save this file to ram */
'save ram:newfile.html'

/* load another file */
'load s:startup-sequence'

/* refresh HTMLtext gadget */
'refresh'

/* display an 'about' requester*/
'about'

/* insert some HTHML tags*/
'insert <b> </b>'
