home *** CD-ROM | disk | FTP | other *** search
/ Magazyn Exec 3 / CD_Magazyn_EXEC_nr_3.iso / Recent / biz / haage / ArtEffect4Demo.lha / ArtEffect4-Demo / Rexx / solarize.rexx < prev    next >
OS/2 REXX Batch file  |  1999-02-15  |  178b  |  17 lines

  1. /* little plugin caller */
  2. address "ArtEffect"
  3.  
  4. say "solarize"
  5. do i=1 to 200
  6.     say i
  7.     domethod 'solarize'
  8.     /*domethod 'edgefind'*/
  9. end
  10.  
  11. say "undo"
  12. do i=1 to 200
  13.     say i
  14.     undo
  15. end
  16.  
  17.