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

link|improve this question

27% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.