home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Misc / EDG-CT1.DMS / in.adf / CT.run / Scripts2 / 5 / Vertical_Mirror_B_T < prev    next >
Encoding:
Text File  |  1995-10-18  |  594 b   |  33 lines

  1. /*
  2.                         Control Tower Arexx Script
  3.                            Written By J.L. White
  4.                          (C)1995 Merlin's Software
  5.  
  6. Lines=6
  7. 01=Vertical Mirror BT Of Image
  8. 02= 
  9. 03=This script loads each image of the File List Window
  10. 04=into ImageFX and flips half the screen Vertically to
  11. 05=give a mirrored image effect. This Copies the Bottom
  12. 06=to the Top.
  13.  
  14. */
  15.  
  16. options results
  17.  
  18. arg Num TotalNum
  19. address "IMAGEFX.1"
  20.  
  21. GetMain
  22. parse var result Name Width Height Blah
  23. Scissors
  24. Region Brush
  25. Box 0 Height%2 Width Height%2
  26. VertFlip
  27. BrushHandle 0 0
  28. Point 0 0
  29. KillBrush
  30.  
  31.  
  32. exit
  33.