home *** CD-ROM | disk | FTP | other *** search
- /*
- Control Tower Arexx Script
- Written By J.L. White
- (C)1995 Merlin's Software
- Lines=5
- 01=Radial Star
- 02=
- 03=This script loads each image of the File List Window
- 04=into ImageFX and allows you to place a star burst
- 05=shaped highlight at a user defined position.
-
- */
-
- options results
-
- arg FrameNum TotalFiles
- address "IMAGEFX.1"
-
- if FrameNum = 0 then do
- Learn "Ram:CT-IFRS" NoHeader Quiet Force
- Hook RadialStar
- Learn Stop Quiet Force
- end
- else do
- if exists("Ram:CT-IFRS.ifx") then address command "Rename Ram:CT-IFRS.ifx to Ram:CT-IFRS"
- call open TempFile,"Ram:CT-IFRS",R
- do until eof(TempFile)
- line = readln(TempFile)
- parse var line Start" "RestOfLine
- if Start = "Hook" then Answer = line
- end
- call close TempFile
- Answer
- end
-
- exit
-