I did not started my planned PyQT flash research yet, but hope following could give you some clues:<br><a href="http://trac.webkit.org/wiki/QtWebKitPlugins">http://trac.webkit.org/wiki/QtWebKitPlugins</a><br><ul><li>Flash uses gdk. Gdk uses a different X connection from Qt. This 
means that we have to flush the gdk display periodically. If you find 
your scrolling jittery, this is the case of that. In the ideal work, 
flash is supposed to use the Display provided using the npapi, but it 
doesn&#39;t.
</li><li>Flash cannot paint on argb32 pixmaps since it does not use the 
visual provided using the npapi (it uses gdk_default_system_visual 
instead). This makes it very hard to implement transparency. For 
QWebView, we grab contents from the backing store to implement 
transparency. For all other cases, transparency is turned off (except 
when the default system visual is 32-bit).
</li></ul>Let me know if you&#39;ll find working PyQt\flash combination.<br><br>Best regards,<br>    Kay<br>