home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD1.iso / CDRom / ASIMCDfs3,0MayorUpdate.LHA / arexx_samples / asimphoto / pictoral_resolution.rexx < prev    next >
Encoding:
OS/2 REXX Batch file  |  1994-08-01  |  423 b   |  23 lines

  1. /*  This example will demonstrate the use of the pictoral resolution command
  2.     in AsimPhoto.
  3.  
  4.     (C)1993 Asimware Innovations                                       */
  5.  
  6.  
  7. RES_SMALL = "small"
  8. RES_MEDIUM = "medium"
  9. RES_LARGE = "large"
  10.  
  11. TRUE = 1
  12. FALSE = 0
  13.  
  14.  
  15. address "AsimPhoto_ARexx.1"
  16.  
  17. pictoral_resolution RES_MEDIUM        /* Set medium-sized icons */
  18.  
  19. pictoral_dir TRUE                            /* ...and turn on the pictoral_dir option */
  20.  
  21.  
  22. exit
  23.