Howdy, All–
I have the following code to remove selected lines from a file:
repeat with each line of epsData
put it into theLine
if theLine contains "%%Title"
delete theLine from epsData
else if theLine contains "%%Creator:"
delete theLine from epsData
else if theLine contains "%%CreationDate"
delete theLine from epsData
else
end if
end repeat
Works great, however I now have blank lines in the file. Any ideas on how I can squeeze these out or modify the above command to ensure no blank lines exist?
Thanks!
Allen