on startMovie
set scoreTally to 0
put EMPTY into member "Tally"
startTimer
WrongA
on mouseUp
set the locH of sprite 17 to 68
set the locV of sprite 17 to 206
scoreTally = scoreTally + 1
end mouseUp
WrongB
on mouseUp
set the locH of sprite 15 to 68
set the locV of sprite 15 to 230
scoreTally = scoreTally + 1
end mouseUp
WrongC
on mouseUp
set the locH of sprite 16 to 68
set the locV of sprite 16 to 253
scoreTally = scoreTally + 1
end mouseUp
Correct
go to the frame
end
on prepareFrame me
put (12-scoreTally) into member "Tally"
set quizTime to the timer
qminutes = quizTime / 3600
qseconds = quizTime / 60 - qminutes*60
put integer(qminutes) && "minutes and" && integer(qseconds) && "seconds" into member "Total Time"
end
|