Hi all, in a quiz I ask a multiple choice question, someone clicks an answer and presses submit.
This submit button calls server side code to determine if they answered correctly or not, I make a greed (good) screen or red (bad) screen open for 2 seconds then back to the quiz.
When I do this as a non popup form it works fine.
What I want to do is make the Memory Form open as a popup, not as an action that is on the browser, this is clarion code on the server, I want to make a popup that closes itself, then navigation goes back to the quiz.
Eg
if StudentAnswer = TrueAnswer
PopupGreen
else
PopupRed
end
My attempts to make the form a popup causes the form to open as a popup, but its blank, that is, there are no fields, buttons or images on the popup, and its in the wrong theme. So obviously its not being initialised correctly.
This appears to be because the popup is part of the parent (calling) form and needs to be populated much earlier.
Anyone done this ?