I use Alert to display a message
and then set a Command to it....
it can run in J2ME simulator
but can't in 3650.....always said illgslStateExcep....
have any solution??
Alert al = new Alert("testing");
al.setTimeout(Alert.FOREVER);
al.setType(AlertType.ERROR);
Command cmd = new Command("abc",Command.SCREEN,1);
al.addCommand(cmd);
al.setCommandListener(this);
display.setCurrent(al);

Reply With Quote

