home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 5 / Amiga Tools 5.iso / tools / usefull / blocnotes / note2wb.rexx < prev    next >
Encoding:
OS/2 REXX Batch file  |  1996-04-12  |  284 b   |  18 lines

  1. /* Move note to WB screen*/
  2.  
  3. address 'blocnotes.rexx'
  4. options results
  5.  
  6. /*Get the id of the note*/
  7.  
  8. parse arg id .
  9.  
  10. ISANOTE id
  11. if result then do     /* Check if the id is valid*/
  12.    SAVE id
  13.    FIXEDSCREEN id SCREEN 'Workbench'
  14.    HIDE id
  15.    SHOW id
  16.    FIXEDSCREEN id OFF
  17.    SAVE id
  18. end