home *** CD-ROM | disk | FTP | other *** search
/ The AGA Experience 2 / agavol2.iso / software / utilities / comms / voodoo / rexx / sendvoodoo.bed next >
Text File  |  1996-01-22  |  351b  |  17 lines

  1. /*
  2.  * Deliver message when using Blacks Editor as an external
  3.  * editor for Voodoo.
  4.  *
  5.  */
  6.  
  7. options results
  8.  
  9. SaveFile QUIET NOBACKUP NOICON        /* Save message */
  10.  
  11. GetFilePath FILE            /* Get filename only */
  12. message="T:"result            /* Attach T: as path to filename */
  13.  
  14. address VOODOO 'SEND' message        /* Send to Voodoo */
  15. Quit QUIET                /* Quit out of BED */
  16.  
  17.