When i click on button in first midlet class i need to redirect to next midlet Class. How to do this
if(sb.toString().equals("SUCCESS")){
Alert success = new Alert("Login Successfully",
"Your Login Process is completed!",
image, AlertType.INFO);
// success.setImage(image);
userName.setString("");
password.setString("");
display.setCurrent(success, form);
// here i move to next midlet
}