Ho do you navigate from a game canvas to a form in Java ME when you require a user to insert his or her username and password
A:
Create the form and add some "OK" command to it.
To show the form, you have to do the following:
Display.getDisplay(this).setCurrent(yourForm);
When that OK command is used, you should do:
Display.getDisplay(this).setCurrent(yourCanvas);
and read the data from the form
BlaXpirit
2010-07-15 13:03:54