I have found a way to do simple checks with the validate option. I found a snippet of code and tried to modify it:
if (event.value !=="north" || event.value !=="south") {
event.rc = false;
app.alert({
cMsg: "Try Again",
cTitle: "My Window Title",
nIcon: 0,
nType: 1
});
}
This would be used for the blanks in the following:
"Latitude tells you how far __________________ or _________________ of the equator." (Where the answers in either blank can be "north" or "south", since the order doesn't matter.)
I got it to work once, but I was on a different computer, so I don't remember how I modified the code to make it happen. The idea would be a pop-up to say "Try again" if the answer entered was neither north or south.
This would work for a simple check understanding quiz, but wouldn't work for a check-box type multiple choice.