Re: [Flashcoders] xml, atomic values, special chars

2005-12-01 Thread Ramon Tayag
I was able to fix it; but I see now what was wrong. For the reference of others: Make sure you call the atomic data by node.childNodes[0].nodeValue I traced out node.childNodes[0] directly - that's why it wasn't tracing properly. Thanks guys! -- Ramon Miguel M. Tayag ___

Re: [Flashcoders] xml, atomic values, special chars

2005-12-01 Thread Ramon Tayag
Still doesn't work :o I'm not putting it in a textfield yet tho; just tracing it for now. I know I can fix this by making the text an attribute and changing all illegal chars to their codes but there's a lot of text.. :s Thanks On 12/2/05, Søren Christensen <[EMAIL PROTECTED]> wrote: > > Well,

Re: [Flashcoders] xml, atomic values, special chars

2005-12-01 Thread Søren Christensen
Well, - make sure your xml file (dynamic or 'physical') is utf-8 encoded. - And make sure your textfield uses a typeface that supports your desired special characthers. - And if the typeface is being embedded make sure that you embed the special charaters as well. Cheers, >B) Søren On 1/12/05

Re: [Flashcoders] xml, atomic values, special chars

2005-12-01 Thread Ramon Tayag
Tried it just now - strange.. I read before that using those tags forces the text to stay the way it is. Any other suggestions? Thank you! On 12/2/05, Mike Boutin <[EMAIL PROTECTED]> wrote: > Have you tried somethign like > > > > Ramon Tayag wrote: > > >Hey everyone, > > > >How do I properly re

Re: [Flashcoders] xml, atomic values, special chars

2005-12-01 Thread Mike Boutin
Have you tried somethign like Ramon Tayag wrote: Hey everyone, How do I properly render text that was pulled from an atomic value? For example, here's the node: This is the atomic value. It's so cool. Getting the child node of that node "a" and tracing it in flash gives me: This is the at

[Flashcoders] xml, atomic values, special chars

2005-12-01 Thread Ramon Tayag
Hey everyone, How do I properly render text that was pulled from an atomic value? For example, here's the node: This is the atomic value. It's so cool. Getting the child node of that node "a" and tracing it in flash gives me: This is the atomic value. It's so cool. How do I get it to print ou