home *** CD-ROM | disk | FTP | other *** search
/ The AGA Experience 2 / agavol2.iso / software / utilities / comms / voodoo / rexx / sendvoodoo.quill < prev    next >
Text File  |  1995-12-12  |  434b  |  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.