home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 2 / amigaformatcd02.iso / demos / cdgallery / aga2 / software / utilities / comms / voodoo / rexx / sendvoodoo.quill < prev    next >
Encoding:
Text File  |  1996-05-20  |  434 b   |  11 lines

  1. /* Deliver message when using Digital Quill as the external editor.
  2.  * Put this script as a macro in the user menu or speedbar. */
  3.  
  4. options results
  5. 'GETATTR PROJECT FILENAME'
  6. message = result
  7. 'MARK OFF' /* turn off block marking, if any */
  8. 'SAVE FORCE' /* save the changes. Suppress requesters. */
  9. address 'VOODOO' 'SEND' message /* tell Voodoo to send it. Voodoo will clean up. */
  10. 'CLOSE FORCE' /* This project can now be closed. */
  11.