Hello,

I'm trying to implement a QLabel with fixed width, which scrolls the text it shows if it's too long (as many multimedia players do, also known as Marquee effect).
It's basically the same question as in this thread: http://www.qtcentre.org/threads/3005...Text-Scrolling,
however I don't understand how I have to "alter QLabel and use QWidget::scroll() with a timer", which was the solution there.
What I've tried so far is using a QTimer together with QLabel.setIndent(QLabel.indent() + 1), which works fine, but scrolls in the wrong direction (values < 0 are ignored so QLabel.indent() - 1 wouldn't work).
So the question is how can I use the scroll function on the QLabel, because right now nothing happens with QLabel.scroll(x, y).

Sidenote: I'm using PyQt 4.8.6-1.

Thanks in advance,
Jay-D