How to change multiple commands label text from default "Menu" to "Go to"
I m new in J2me and J2me polish and having problems in label of command.
Here I code that add multiple commands
Command chPinCom = new Command("Change Pin", Command.SCREEN, 2);
Command accCom = new Command("Account", Command.SCREEN, 2);
Command favCom = new Command("Favourites", Command.SCREEN, 2);
the code that add commands in list
listScr.addCommand(chPinCom);
listScr.addCommand(accCom);
listScr.addCommand(favNumCom);
listScr is the type of LIst
Please help that hoe I change commands label text from default "Menu" to "Go to" that showed in right bottom on the screen

