Skip to main content
May 5, 2014
Question

How to create a Check_Answer Button

  • May 5, 2014
  • 2 replies
  • 229 views

Sir

I want to create a button of "Match_Answer"

that return me situation done user is correct or not

can you help me

This topic has been closed for replies.

2 replies

Inspiring
May 5, 2014

You need to see if they answered the question correctly? Just have a code like this for your button click:

var correct:Boolean

if (OBJECT_HERE.text == "ANSWER_HERE") {RESULT_HERE(something like correct = true}

else {NOT_CORRECT(something like correct = false)}

Ned Murphy
Legend
May 5, 2014

What answer needs to be checked against what question?