Вы можете сделать это, написав свой собственный код, используя поток.
класс Marquee реализует Runnable
{
Резьба т;
Marquee()
{
t = new Thread(this, "Demo Thread");
t.start();
}
public void run()
{
try
{
for(int i = 820; i>0 ;i-=5)
{
marql.setBounds(i,10,130,40);// marql label moves
Thread.sleep(500);
p3.repaint(); //p3 is a panel with layout null
if(i<10)
{
i = 820;
}
}
}
catch(InterruptedException e)
{
System.out.println("Thread Interrupted "+e);
}
}
}