alert screen question

How do you manualy dismiss an alert screen set to forever from within a program? Thanks
[94 byte] By [jonney69a] at [2007-11-27 3:59:50]
# 1
add a command to dissmiss the alert.
java_at_corea at 2007-7-12 9:04:24 > top of Java-index,Java Mobility Forums,Java ME Technologies...
# 2

@java_at_core, that is for the user to dismiss the alert. He wants the program to dissmiss it, am I right?

But what is the point of that? Consider, when will you dissmiss it?

1. After a fixed time? Might as well use a timed Alert.

2. Immediately? User won't even see it.

And if it's an alert with timeout FOREVER, there will be no more input from user till he presses the dismiss command and till then, you can only do one of the above two actions.

So your query doesn't really make sense, but it is possible to do it. Just set the current display to whatever else you want to.

Display.setCurrent(displayable);

nogoodatcodinga at 2007-7-12 9:04:24 > top of Java-index,Java Mobility Forums,Java ME Technologies...