Hello All,
I have a form with a multiline text area that pulls a default value from a text component when a button is pushed. I would like to do a bit of formatting to the text but I'm having some difficulty. All I would like to do is add some spacing for the paragraphs. I've tried something like this:
defaultText = "This is the first paragraph." + href + href + "This is the second paragraph."
In the case above it ignores anything except the strings, so everything is on one line. I've also tried:
default Text = "This is the first paragraph. + href + href + This is the second paragraph."
As you would expect the formatting is treated as text here and is displayed. Does anyone have any suggestions?
Thanks,
Brad
It's hret that you want, not href. If it is still not working you can try "\r\n" inside quotes that should also give you a single line return.
Thanks. Not sure if that was a type-o on my part or part of a html tag forcing itself out of the depths of my brain when I didn't want it. 🙂
default Text = “This is the first paragraph. + href + href + This is the second paragraph.”
Also you need to format it like this
default Text = “This is the first paragraph." + hret + hret + "This is the second paragraph.”
You need to have the HRET outside of the quotes.