actionscript question
actionscript question
- Started
- Last post
- 5 Responses
- pushme
I'm parsing xml and would like to have a line break between two pieces of xml. How do I write in a line break in Actionscipt?\
thx
- gabe0
try \n or \r
- pushme0
thx, tried that but no go.
- nospacebar0
Can you post your AS that imports/interprets the XML? I think I might know what the problem is.
- pushme0
i need a break where the + is.
thx in advance. this is line:this.ref["gallery"+i].text = content_subnodes[i].attributes.g... + content_subnodes[i].firstChild.t...
- ********0
+NEWLINE+
It's pretty early in the morning here but I would try this:
e.g.
this.ref["gallery"+i ].text = content_subnodes[i]. attributes.gallery_h eader+NEWLINE+content_subnodes[i... firstChild.toString( )