XML Fingerspelling Quiz

Quiz Mode
Michael Toy
I am a Junior at Wheaton College, I have just finished my first class in AS3. I have programmed a number of smaller projects, as well as a substantial bigger American Sign Language fingerspelling parser. I am a computer science major and enjoy learning languages, such as ML, Java, C, and most recently, AS3.
View all articles by Michael Toy/*
* Randomly select an index in the array and then display the fingerspelling of the word
*/
function quizListener(e:MouseEvent):void
{
if(speedSelected)
{
myText.text = "";
quizIndex = Math.random()*10;
inQuiz = true;
newWord = true;
doWork(quizArray[quizIndex]);
}
else
instruct.text = "Please make sure that you have selected a speed.";
}
/*
* Exit quiz mode
*/
function exitQuizListener(e:MouseEvent):void
{
debug.text = "";
myText.text = "";
instruct.text = "Please input word to spell."
inQuiz = false;
quizCounter.reset();
numCorrect.text = "Correct: ";
numWrong.text = "Incorrect: ";
}
/*
* Repeat the last word signed
*/
function repeatListener(e:MouseEvent):void
{
if(word != "")
doWork(word);
}
Spread The Word
2 Responses to "XML Fingerspelling Quiz" 
|
said this on 10 Mar 2010 10:02:09 PM CDT
It could be excelent tuto
|
|
said this on 06 Apr 2011 7:07:44 AM CDT
Can you please provide a
Thanks |


Author/Admin)