watch this space for additional helpful material.
//If the update button is pressed
if(cmd == UPDATE_CMD) {
//Fire updates for all fields in the options panel
for(int i = 0; i < textFields.length; i++)
textFields[i].postActionEvent();
}
A return statement is missing at the end of this block. Changing it to:
//If the update button is pressed
if(cmd == UPDATE_CMD) {
//Fire updates for all fields in the options panel
for(int i = 0; i < textFields.length; i++)
textFields[i].postActionEvent();
return;
}
will fix the problem.