home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD1.iso / GFX / Converter / IMAFX26.lha / imagefx2 / rexx / autofx / AutoFX.ifx.pre < prev    next >
Encoding:
Text File  |  1996-04-10  |  468 b   |  34 lines

  1. /*
  2.  * AutoFX.ifx.pre
  3.  * Written by Thomas Krehbiel
  4.  *
  5.  * Called before AutoFX begins any processing.  May be used to turn off
  6.  * redraw or undo to speed things up a bit.
  7.  *
  8.  * Inputs:
  9.  *    None.
  10.  *
  11.  * Returns:
  12.  *    0 if successful, non-zero on failure
  13.  *
  14.  */
  15.  
  16. OPTIONS RESULTS
  17.  
  18. GetMain
  19. IF rc = 0 THEN DO
  20.    RequestResponse 'Buffer will be destroyed.  Continue?'
  21.    IF rc ~= 0 THEN EXIT rc
  22.    END
  23.  
  24. KillBuffer Force
  25. KillAll
  26. Redraw
  27.  
  28. Redraw Off
  29. Undo Off
  30.  
  31. LockInput
  32.  
  33. EXIT
  34.