home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Misc / EDG-CT1.DMS / in.adf / CT.run / Scripts2 / 5 / Roughen_Image < prev    next >
Encoding:
Text File  |  1995-10-17  |  799 b   |  40 lines

  1. /*
  2.                         Control Tower Arexx Script
  3.                            Written By J.L. White
  4.                          (C)1995 Merlin's Software
  5.  
  6. Lines=4
  7. 01=Roughen Image
  8. 02= 
  9. 03=This script loads each image of the File List Window
  10. 04=into ImageFX and alters the color level of the image.
  11.  
  12. */
  13.  
  14. options results
  15.  
  16. arg FrameNum TotalFiles
  17. address "IMAGEFX.1"
  18.  
  19.  
  20. if FrameNum = 0 then do
  21.     FrameNum = 1
  22.     RequestSlider '"Enter Amount Of Roughening To Apply!"' 1 255 25
  23.         if Result = "" then Result = 255
  24.         if Result = 0 then Result = 1
  25.     Answer = Result
  26.     call open TempFile,"Ram:CT-IFROU",W
  27.     call writeln TempFile,Answer
  28.     call close TempFile
  29.     end
  30. else do
  31.     call open TempFile,"Ram:CT-IFROU",R
  32.     line = readln(TempFile)
  33.     parse var line Answer
  34.     call close TempFile
  35.     end
  36.  
  37. Roughen Answer
  38.  
  39. exit
  40.