Hello,
I didn’t quite know what forum to put this in, since it’s not directly programming related.
But since the project it’s related to is made with Actionscript3/flash/XML I figured I’d post it in here.
Im working on a project that’s for helping people perform first aid. It’s based off a nifty thing called a “ResqueMate”. Basically, the app will ask you a question, on which you give an answer yes/no. It will respond to this with explanation+new question.
I figured i’d structure the questions in a XML file, for easy retrieval/editing. I made a structure like this;
<question id=””>
<question-text nexts=””>
<next nextid=””>
<answer_yes> question-id new question</answer_yes>
<answer_no> question-id new question</answer_no>
</question>
The ‘problem’ I am having though, is that currently (we haven’t extracted all of the text from the device yet) we allready got somewhere around 200 ‘questions/answers’. How can I structure their ID’s in a way I won’t make a terrible mess out of it?