Hi everyone,
I am working on a flash project… and what I am trying to do is just do a simple line break inside a simple node. An example node would be something like this:
<resource value=“Firstline[br]Secondline”>
So I am loading this node into flash, and I replace the [br] with /r
split("[br]").join("\r");
This all seems to be working just fine!!! But when I upload the whole thing on the server where it should be on… somehow it is adding an extra line break… so instead of showing the following to the dynamic textfield
“Firstline
Secondline”
it is showing
"Firstline
Secondline"
Is there anything that I do not see?
Any help would be reaaaaaaallly appreciated!