0

I am new to Java-me and I am using LWUIT to display radio buttons. When I select a radio button its text starts moving or it start ticker. I would like to stop that.Does some one know how to do that?

Joker
  • 81
  • 12

1 Answers1

0

You should use the method setDefaultTickerEnable(false) with your Button.

Button LWUIT API

Mun0n
  • 4,438
  • 4
  • 28
  • 46
  • Actually there is no setDefaultTickerEnable method. The problem started again – Joker Jan 20 '14 at 10:48
  • WHAT? Where don't you finde the method? – Mun0n Jan 20 '14 at 11:11
  • see the link you have provided. Button.() isn't providing the method – Joker Jan 20 '14 at 11:47
  • The method is inherited from Label. If make a search in the page you will find this method. – Mun0n Jan 20 '14 at 12:12
  • The method is static. So we have to use the class name as, RadioButton.setDefaultTickerEnabled(false). You can also use it for combo box as ComboBox.setDefaultTickerEnabled(false). @jmunoz Sorry for the mistake. – Joker Feb 01 '14 at 04:33