home *** CD-ROM | disk | FTP | other *** search
- /*
- Control Tower Arexx Script
- Written By J.L. White
- (C)1995 Merlin's Software
- Lines=5
- 01=Oil Paint
- 02=
- 03=This script loads each image of the File List Window
- 04=into ImageFX and creates an effect similar to that
- 05=of an oil painting.
-
-
- */
-
- options results
-
- arg FrameNum TotalFiles
- address "IMAGEFX.1"
-
-
- if FrameNum = 0 then do
- FrameNum = 1
- NumA = 1
- NumB = 7
- NumC = 3
- RequestSlider '"Enter Size Of Brush To Use!"' NumA NumB NumC
- Answer = Result
- call open TempFile,"Ram:CT-IFOP",W
- call writeln TempFile,Answer
- call close TempFile
- end
- else do
- call open TempFile,"Ram:CT-IFOP",R
- line = readln(TempFile)
- parse var line Answer
- call close TempFile
- end
-
- Hook OilPaint Answer
-
- exit
-