Hi guys,
I have to implement a quiz game and I'm trying to parse an XML file in order to retrieve all the contained data and use them to fill some buttons and labels with questions and answers.
This is my XML:
How are you? Fine bad What is your name Mark John Paul
I'm able to parse it, but observing the inspector while running the simulation in the editor it seems that they are not stored correctly (that's a screencapture of my inspector).
![alt text][1]
I don't understand why Element1 and Element2 are empty and all the data about my second quiz are stored in Element3.
Can someone help me in understanding what I did wrong?
This is my parser:
import System.Xml;
class Answer{
var answerID:int = 0;
var correct:String = " ";
var text:String = " ";
}
class Quiz{
var quizNr:int = 0;
var questionText:String;
var answerNr:int =0;
var answers:Answer[];
}
class Test{
var nr:int;
var quiz:Quiz[];
}
var test:Test;
function Start()
{
//readxml from chat.xml in project folder
var reader:XmlReader = XmlReader.Create("chat.xml");
reader.Read();
do
{
//when you find a quesiti tag do this
if(reader.IsStartElement("test"))
{
test.nr = parseInt(reader.GetAttribute("nr"));
test.quiz = new Quiz[test.nr];
for(var i:int = 0; i
↧