home *** CD-ROM | disk | FTP | other *** search
- /*
- Control Tower Arexx Script
- Written By J.L. White
- (C)1995 Merlin's Software
-
- Lines=6
- 01=Crystallize
- 02=
- 03=Performs a geometric decomposition, similar to the
- 04=Mosaic and Polar Mosaic distortion effects. In this
- 05=case, however, the distortion can be manipulated in a
- 06=planar dimension.
- */
- options results
-
- arg FrameNum TotalFiles
- address "IMAGEFX.1"
-
-
- if FrameNum = 0 then do
- FrameNum = 1
- Learn "RAM:CT-IFCZ" NoHeader Quiet Force
- Hook Crystallize
- Learn Stop Quiet Force
- end
- else do
- if exists("RAM:CT-IFCZ.ifx") then address command "Rename Ram:CT-IFCZ.ifx to Ram:CT-IFCZ"
- call open TempFile,"Ram:CT-IFCZ",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
-