home *** CD-ROM | disk | FTP | other *** search
- /*
- Control Tower Arexx Script
- Written By J.L. White
- (C)1995 Merlin's Software
-
- Lines=5
- 01=UnSharpen Image
- 02=
- 03=This script loads each image of the File List Window
- 04=into ImageFX and unlike the name might imply, sharpens
- 05=edges and is less prone to noise than Sharpen.
-
- */
-
- options results
-
- arg FrameNum TotalFiles
- address "IMAGEFX.1"
-
-
- if FrameNum = 0 then do
- FrameNum = 1
- RequestSlider '"Enter Amount Of Masking To Apply!"' 1 16 8
- Answer = Result
- call open TempFile,"Ram:CT-IFUS",W
- call writeln TempFile,Answer
- call close TempFile
- end
- else do
- call open TempFile,"Ram:CT-IFUS",R
- line = readln(TempFile)
- parse var line Answer
- call close TempFile
- end
-
- UnSharpMask Answer
-
- exit
-