You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to haxef...@googlegroups.com
So I've got a situation where I'm filling a FlxText with a fair amount of text broken up with line breaks. However, each line break appears to be parsing as a double line break when rendering the text. Take, for instance, this example text:
This is a reminder that the new call monitoring procedures discussed during last month's team meetings go into effect today. Supervisors will be live-monitoring your calls, so remember:
- be courteous
- control the conversation
- proper security on every call
Failure to adhere to these rules will result in disciplinary action, up to and including termination.
Let's work together to give the best experience to our callers!
Sincerely,
upper management
This text renders as you see in the image attached. I can't find anything in the documentation about affecting the size or amount of line breaks in the text field. Any help?
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to haxef...@googlegroups.com
Hi,
How does your text appear in a text editor with newlines showing? Do
you have cr (carriage-return), lf (line feed), or both? Maybe if you
have both, you only need one of the two.
For example, in C#, we usually append \n (newline), not \n\r (which
would be both Unix and Windows newline characters).
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to haxef...@googlegroups.com
Thanks, Ashiq!
I'm using FlashDevelop, and it turns out it WAS set so that line ends had both CR and LF. I was able to change that setting under File -> Line Ends. No more double line breaks!