After using the following code;function TimedOut() {
xfa.host.messageBox("Done waiting " +
xfa.form.gameform.money_game.timer.rawValue + "
seconds.","Timer",3,0);}//prompt for number of secondsvar secondCount =
xfa.host.response("Enter number of seconds", "Number of Seconds", "",
"")//start counterif (secondCount >= 0)//timer set for thousandths of a
secondapp.setTimeOut("xfa.form.gameform.money_game.start_time.TimedOut();",
1000*secondCount);I am able to get the message to appear after an input...