home *** CD-ROM | disk | FTP | other *** search
/ Enigma Amiga Life 109 / EnigmaAmiga109CD.iso / software / grafica / imageengineerv3.41 / imengv3.41p2 / notes / merge.notes < prev    next >
Text File  |  1999-10-15  |  2KB  |  97 lines

  1.  
  2.  
  3. Image Engineer script - Merge v2.02
  4.  
  5.  
  6.  
  7. SHORT DESCRIPTION
  8.  
  9.   This script merges two pictures together.
  10.  
  11.  
  12. REQUIREMENTS
  13.  
  14.   Image Engineer v3.41 (Wision release 2)
  15.  
  16.  
  17. INSTALLATION
  18.  
  19.   This script belongs to Image Engineer distribution, so it
  20.   should allready be in IE:Arexx/, where it belongs.
  21.  
  22.  
  23. USAGE
  24.  
  25.   Mark picture to merge to as SECONDARY.
  26.   Activate window of an image to merge and run the script.
  27.  
  28.   Active (Primary) picture will be merged to Secondary picture
  29.   like you order to. Like,
  30.  
  31.    "Merge Primary to the left side and above of Secondary"
  32.  
  33.   Finetune placement as you wish. Final picture sizes are exact,
  34.   there will no extra space around images.
  35.  
  36.  
  37. ARGUMENTS
  38.  
  39.   Merge.rexx" <pic> <sec> <valign> <halign> <xoffset> <yoffset>
  40.  
  41.   <pic>     name of picture (in IE) to merge
  42.   <sec>     name of picture (in IE) to merge to
  43.   <valign>  one of following keywords:
  44.  
  45.              ABOVE,TOP,ABSMIDDLE,BOTTOM or BELOW
  46.  
  47.   <halign>  one of following keywords:
  48.  
  49.              LEFTSIDE,LEFT,CENTER,RIGHT or RIGHTSIDE
  50.  
  51.   <xoffset> finetune for horizontal alignment
  52.   <yoffset> finetune for vertical alignment
  53.  
  54.  
  55.  
  56.   AmigaDOS
  57.  
  58.     Sys:Rexxc/RX Merge.rexx <arguments>
  59.     Sys:Rexxc/RX Merge.rexx C2.iff 000_C2.iff ABOVE LEFTSIDE 0 0
  60.  
  61.  
  62.  
  63.   Other scripts:
  64.  
  65.     ADDRESS COMMAND "Sys:Rexxc/RX IE:Arexx/Merge.rexx <arguments>"
  66.  
  67.     Next lines return you the name of new picture.
  68.  
  69.     PROJECT_LIST
  70.     xyz=result
  71.     pic=subword(xyz,1,1)
  72.  
  73.  
  74.  
  75.  
  76.  
  77. HISTORY
  78.  
  79.   2.02
  80.  
  81.   Exchanged Primary and Secondary with each other.
  82.  
  83.   2.00
  84.  
  85.   Fully recoded. Now can be aligned horizontally and vertically
  86.   with optional offset. Possible aligns are now ABOVE, TOP,
  87.   ABSMIDDLE, BOTTOM, BELOW and LEFTSIDE, LEFT, CENTER, RIGHT,
  88.   RIGHTSIDE.
  89.  
  90.   1.00
  91.  
  92.   History started
  93.  
  94.  
  95.  
  96.  
  97.