I’m looking, for various almost mystical reasons, to have a string containing more than one spaces. Basically, I want to be able to have a text string that, when compiled into an SWF, will show ” “.
I’m sure it is possible but… How?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If your string is within an xml document, you might want to set
XML.ignoreWhitespace=true;andXML.prettyPrinting=false;This will ensure that any whitespace (spaces, tabs and line breaks) are not compressed to a single space.
It also helps to have
<![CDATA[ ]]>tags around your text, in some cases.