tags:

views:

146

answers:

1

Hi, as the title says, I want to add my main window a banner in the bottom of the window that shows text that runs from left to right, just like you can see in your TV when watching fox/CNN...

I'm using QT 4.5.2

Thanks a lot :)

+3  A: 

You have many options. You could:

QTimeline and/or QTimer will likely be useful in your implementation. The key idea is that you need to draw something at different positions at consistent intervals. If you redraw frequently enough, it will look like an animation.

Kaleb Pederson
OK, thanks, I'll try to implement it.