Skip to main content
Known Participant
February 2, 2011
Question

Missing space characters before and after span element (TLF 2 with Flex 4.1)

  • February 2, 2011
  • 1 reply
  • 754 views

It seems there's a bug, I reported it at

http://bugs.adobe.com/jira/browse/SDK-29367 .

(I wasn't able to specify "TLF" in the "Components" dropdown, that's why I'm posting the bug report URL here in the TLF forum.)

Tobi

This topic has been closed for replies.

1 reply

Adobe Employee
February 3, 2011

I think the problem may be that you have "ignoreWhitespace" on the XML object set to true, so the spaces at the start and end of elements are being removed. Try setting it to false.

- robin

tobi3Author
Known Participant
February 3, 2011

I don't think the default makes any sense, but this helps:

  XML.ignoreWhitespace = false;

Thanks!