home *** CD-ROM | disk | FTP | other *** search
- /*
- Control Tower Arexx Script
- Written By J.L. White
- (C)1995 Merlin's Software
- Lines=5
- 01=Hockney Tiling
- 02=
- 03=This script loads each image of the File List Window
- 04=into ImageFX and subdivdes the images into a grid of
- 05=user defined mosaic tiles.
-
- */
-
- options results
-
- arg FrameNum TotalFiles
- address "IMAGEFX.1"
-
- if FrameNum = 0 then do
- Learn "Ram:CT-IFTI" NoHeader Quiet Force
- Hook Tile
- Learn Stop Quiet Force
- end
- else do
- if exists("Ram:CT-IFTI.ifx") then address command "Rename Ram:CT-IFTI.ifx to Ram:CT-IFTI"
- call open TempFile,"Ram:CT-IFTI",R
- do until eof(TempFile)
- line = readln(TempFile)
- parse var line Start" "RestOfLine
- if Start = "Hook" then Answer = line
- end
- call close TempFile
- Answer
- end
-
-
- exit
-