How can I attach a gauge in an alert....can anyone help me? I have created a non interactive gauge and when the user press send button i want the alert with gauge to be displayed showing the user that sms is being send along with the gauge..
private void gauge() {
new Thread(){
public void run(){
int s = g.getValue();
while(s<=100) {
g.setValue (s);
try {
Thread.sleep(1000);
} catch (InterruptedException ex) {
ex.printStackTrace();
}
s+=10 ;
}
g.setLabel("Sending Complete!");
form.removeCommand(start);
}
}.start();
}
}
it's not working can anyone help me with the simple code