home *** CD-ROM | disk | FTP | other *** search
- /*
- Control Tower Arexx Script
- Written By J.L. White
- (C)1995 Merlin's Software
-
- Lines=5
- 01=Dream
- 02=
- 03=An image warping option for producing dreamlike special
- 04=effects. Anyone who knows old black and white Science
- 05=Fiction movies will recognize the Dream distortion effect.
- */
-
- options results
-
- arg FrameNum TotalFiles
- address "IMAGEFX.1"
-
-
- if FrameNum = 0 then do
- FrameNum = 1
- Learn "RAM:CT-IFD" NoHeader Quiet Force
- Hook Dream
- Learn Stop Quiet Force
- end
- else do
- if exists("RAM:CT-IFD.ifx") then address command "Rename Ram:CT-IFD.ifx to Ram:CT-IFD"
- call open TempFile,"Ram:IFD",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
-