Hi. I’m having a bit of a problem with strings. When imbedding /r in a string, script debugger seems to view them as carriage returns when compiling. So instead of seeing “Grapes/rApples/rPears” in one line, it shows up in the editor as
Grapes
Apples
Pears
This is untidy. Any idea how to get around this problem? Thanks!
As a workaround, I often set properties for these:
property CR : return
property LF : linefeed
--- Then you can have:
set x to "Grapes" & CR & "Apples" & CR & "Pears"
set x to "Grapes" & LF & "Apples" & LF & "Pears"