been on this for a while...
I'm iterating thru attribute nodes with a subloop *
it should just give the text from that node
how would i set my text then? nothing seems to work
set text to myxml.StringValue("?")
testfile
Develop games in your browser. Powerful, performant & highly capable.
myxml.StringValue(".") to select the current node.
oh man, great, it works, thank you !
would you know if its possible to get the actual text instead of the value
ex. > name="Playerstatus" you get "name"
i want to make something that works for multiple xml structures, so that would be nice
found how you get the <element> name (not the value)
just myxml.StringValue("name()")