answer = new Array();
answer[0] = "1997";
answer[1] = "1941";
question = new Array();
question[0] = "What ...?";
question[1] = "Why ...?";
question_txt.text = question;
enter1.onRelease = function()
{
if (answer_input.text == answer)
{
answer++;
question++;
question_txt.text = question;
}
else
{
answer_input.text = "Incorrect";
}
};
2 つのテキスト ボックスとボタン TextBox1 = question_txt - 質問を表示するためのもので、タイプは[Dynamic]
textBox2 = answer_input - ユーザーが質問に回答できるようにするためのものです。
回答と質問の値は作り話です。気にしないでください。
では、なぜ機能しないのでしょうか。