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

  1. /*
  2.  *    Custom.ifx.pre
  3.  *    As the user to enter a command, and execute that
  4.  *    command while processing.
  5.  *
  6.  *    by Steve Tibbett
  7.  */
  8.  
  9. Options Results
  10.  
  11. Default=GetClip("ImpCustomCommand"arg(1));
  12. if (Default="") then Default="Oval 100 100 50 50"
  13.  
  14. RequestString '"Enter an ImageFX command:"' '"'Default'"'
  15. if (RC~=0) then return 10
  16.  
  17. call SetClip("ImpCustomCommand"arg(1), Result);
  18.  
  19.