home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD1.iso / GFX / Converter / IMAFX26.lha / imagefx2 / rexx / autofx / ClearBuffer.ifx < prev    next >
Encoding:
Text File  |  1994-07-30  |  377 b   |  20 lines

  1. /*
  2.  *    Clear_Buffer.ifx
  3.  *    ClearBuffer script. Retrieves parameters from
  4.  *    ImpClearBufferParameters clip variable.
  5.  *
  6.  *    by Steve Tibbett
  7.  */
  8.  
  9. Options Results
  10.  
  11. SeqNum=Word(Arg(1),4);
  12.  
  13. Settings=GetClip("ImpClearBufferParameters"SeqNum);
  14. if (Settings="") then do
  15.     RequestNotify "ImpClearBufferParameters invalid in ImpClearBuffer.ifx"
  16.     return 20
  17.     End
  18.  
  19. ClearBuffer FORCE Settings
  20.