Hi. This is part of my code, and I need to add some functionality.
I want to do the same when the RIGHT_KEY is pressed, that is create a Tags and set its list as current. Moreover, when i click LEFT_KEY (after i clicked the right one) I want to go back. Can anybody help? I read about the Canvas class but couldn't get it...Code:else if(command.getCommandType() == Command.OK) { int index = list.getSelectedIndex(); switch(index) { case 0: newTags = new Tags(this); displayMgr.pushDisplayable(); display.setCurrent(newTags.list); break; . . .
Thanks for any help.

Reply With Quote

