home *** CD-ROM | disk | FTP | other *** search
- /*
- Control Tower Arexx Script
- Written By J.L. White
- (C)1995 Merlin's Software
-
- Lines=7
- 01=Straw
- 02=
- 03=This script loads each image of the File List Window
- 04=into ImageFX and applies the Straw Hook. This looks
- 05=like strands of straw have been thrown on the image.
- 06=This effect works well for images being used as a
- 07=background for text screens or keyed video.
-
- */
-
- options results
-
- arg FrameNum TotalFiles
- address "IMAGEFX.1"
-
-
- if FrameNum = 0 then do
- FrameNum = 1
- NumA = 2
- NumB = 50
- NumC = 30
- RequestSlider '"Enter Straw Line Size To Use!"' NumA NumB NumC
- Answer = Result
- call open TempFile,"Ram:CT-IFMZ",W
- call writeln TempFile,Answer
- call close TempFile
- end
- else do
- call open TempFile,"Ram:CT-IFMZ",R
- line = readln(TempFile)
- parse var line Answer
- call close TempFile
- end
-
- Hook Straw Answer
-
- exit
-