I have a flash quiz that has one dynamic text field labeled score that is capturing the users score and I want to pass along that score to a dynamic field in an html page that will display it.
It successfully opens the results.html page but it does not display the score data on the the page.
I have some actionscript on the last frame of the flash quiz (below) that should pass along the score but it doesn't work.
I know the html page is working correctly because it has been used before using a flash component quiz - I am reusing their code below for mine, I just changed the variable name to score (and changed it in the results.html page as well).
var scoreurl;
scoreurl="results.htm?score=" + "&score=";
getURL(scoreurl);
It successfully opens the results.html page but it does not display the score data on the the page.
I have some actionscript on the last frame of the flash quiz (below) that should pass along the score but it doesn't work.
I know the html page is working correctly because it has been used before using a flash component quiz - I am reusing their code below for mine, I just changed the variable name to score (and changed it in the results.html page as well).
var scoreurl;
scoreurl="results.htm?score=" + "&score=";
getURL(scoreurl);