John Dough
John Dough

Reputation: 1

Creating new lines on an automized message on AppleScript

I am trying to create a new line in a message in my apple script code. But it keeps saying I can't add return after return. What I keep getting this what I need

my current code is

set myReply to "Sure. I will start doing that now." & return & "Hope everything is well." & return & "Thanks," & return & "-Diego"

Upvotes: 0

Views: 58

Answers (1)

user3579815
user3579815

Reputation: 572

I'm not sure you need to concatenate the return character. Try:

set myReply to "Sure Dora, I will start doing that now.
Hope everything is well

Thanks,
-Diego"

Upvotes: 0

Related Questions