How to display Ticker in Java ME
Article Metadata
Here is the code to display a ticker in a form in Java ME.
Ticker tick = new Ticker("This is a ticker");
Form form = new Form("Form");
form.setTicker(tick);
A Ticker is a piece of text that runs continuously across the display


23 Sep
2009
Information: Basic
This code is simple to understand and it shows how to put ticker in display form. Ticker is nothing but it can be considered as a marquee that you might be learnt in HTML coding. This article has short code that is enough to understand ticker.