I have a quiz set up pulling xml data in:
<?xml version="1.0" encoding="UTF-8"?>
<document>
<intro><b>Introduction & Instructions</b></intro>
<desc>Description can go here</desc>
<question>question 1 would go here</question>
<answer>question 1 answer1</answer>
<answer>question 1 answer2</answer>
<answer>question 1 answer3</answer>
<answer>*question 1 answer4</answer>
<remediation>question 1 feedback/remediation</remediation>
...and so on for as many Qs as I have, and I am pulling them into flash using:
var page_xml = new XML();
page_xml.ignoreWhite = true;
page_xml.onLoad = function(success){
if (success) {
gsIntro = page_xml.firstChild.childNodes[0].toString();
gsDesc = page_xml.firstChild.childNodes[1];