home *** CD-ROM | disk | FTP | other *** search
/ Amiga ACS 1998 #4 / amigaacscoverdisc1998-041998.iso / utilities / commercialdemos / arteffect2.0 / rexx / plugin.rexx < prev    next >
OS/2 REXX Batch file  |  1997-05-08  |  347b  |  26 lines

  1. /*
  2.     I/O Rexx Example
  3. */
  4.  
  5. options results
  6.  
  7. address "ArtEffect"
  8.  
  9. lockgui
  10. loadpic 'pics:photoshop/portrait.jpg'
  11.  
  12. /*address command wait 5*/
  13.  
  14. domethod twirl angle '-20'
  15. domethod antique color
  16.  
  17. /*
  18.     IMPORTANT!
  19.     Without leaving the plugins they can
  20.     not be reached from menu anymore.
  21. */
  22. domethod antique noexec quit
  23. domethod twirl noexec quit
  24. unlockgui
  25.  
  26.