if([ActionForm].getButton().getFirstChoice().pressed()) {
// do whatever
} else if ([ActionForm].getButton().getSecondChoice().pressed()) {
// do whatever
} else if([ActionForm].getButton().getSecondChoice().pressed()) {
// do whatever
} else {
// throw exceptions galore
}
Oops, obviously, the third should read:
else if([ActionForm].getButton().getThirdChoice().pressed()) {
// do whatever
}
Michael

