Don't know about AppleScript but here is a Rev script that works:
-- find and delete eol returns repeat get offset(RETURN, cd fld Text1) if it = 0 then exit repeat put " " into char it of cd fld Text1 end repeat
There's a built-in command that's even faster:
replace (return & return & return) with return in cd fld "text1"
-- Jacqueline Landman Gay | [EMAIL PROTECTED] HyperActive Software | http://www.hyperactivesw.com
_______________________________________________ use-revolution mailing list [EMAIL PROTECTED] http://lists.runrev.com/mailman/listinfo/use-revolution
