Previous | Next | (P-PDF) JavaScript
Topic: Re: Comb box snafu
Conf: (P-PDF) JavaScript, Msg: 86634
From: george
Date: 4/25/2003 04:11 AM
The only place you need to place the code is the Keystroke event. Try this:
if (!event.willCommit) {
theGender = event.changeEx;
if (theGender == "M")
{
app.alert("You chose a male.");
}
else
{
app.alert("You chose a female.")
}
}
George