home *** CD-ROM | disk | FTP | other *** search
- /*
- Control Tower Arexx Script
- Written By J.L. White
- (C)1995 Merlin's Software
-
- Lines=5
- 01=Adjust Yellow In Image
- 02=
- 03=This script will load an image into
- 04=Image FX and allow you to adjust the
- 05=YELLOW content of the image.
-
- */
-
- options results
-
- arg Num TotalNum
- address "IMAGEFX.1"
-
- if Num = 0 then do
- NumA = -127
- NumB = 127
- NumC = 0
-
- RequestSlider '"Enter Amount To Adjust The Yellow Content Of Image!"' NumA NumB NumC
- Answer = Result
- call open TempFile,"Ram:CT-IFAY",W
- call writeln TempFile,Answer
- call close TempFile
- end
- else do
- call open TempFile,"Ram:CT-IFAY",R
- line = readln(TempFile)
- parse var line Answer
- call close TempFile
- end
-
- Yellow Answer
-
- exit
-