Xml reader tool for GS
in Tech Support
Is there a tool by anyone that allows easy reading of the xml that Gamesalad generates? It could be even a set of css and js files to make things simply readable rather than looking, I know it seems like I talking of the creator essentially but nope, not wanting to edit just read and make things like this
</expression>
<string xml:space="preserve">25*sin(</string>
<reference keypath="self.attributes.time"/>
<string xml:space="preserve">*2000)</string>
</expression>
into this:
25*sin(self.attributes.time*2000)
I simply want to read these so I can better document my project to highlight whats going on.
Comments
Creator 2 sort of does this (i.e. it converts expressions into more code like expressions) that are just text, so you can copy them easily. You may want to try that?
Got it! Will try that out.