home *** CD-ROM | disk | FTP | other *** search
- /*
- Control Tower Arexx Script
- Written By J.L. White
- (C)1995 Merlin's Software
-
- Lines=8
- 01=Warp Image
- 02=
- 03=This script loads each image of the File List Window into
- 04=ImageFX and uses the Warp Hook. Pinch will have the effect
- 05=of squeezing together pixels toward a user defined point
- 06=while Punch has the opposite effect of pushing the pixels
- 07=out away from the point. Punch can simulate blister effects,
- 08-the magnifying qualities of water droplets or a fisheye lens.
-
- */
-
- options results
-
- arg FrameNum TotalFiles
- address "IMAGEFX.1"
-
-
- if FrameNum = 0 then do
- FrameNum = 1
- Learn "RAM:CT-IFWI" NoHeader Quiet Force
- Hook Warp
- Learn Stop Quiet Force
- end
- else do
- if exists("RAM:CT-IFWI.ifx") then address command "Rename RAM:CT-IFWI.ifx to RAM:CT-IFWI"
- call open TempFile,"RAM:CT-IFWI",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
-