I wrote this code : Playing Flash and displaying text on it.
It worked well in 4.3 but, I can't see the text in 4.4
It's like that QAxWidget make other widgets in it's area hide.

help me to display flash and text in same area.

Qt Code:
  1. QAxWidget *back = new QAxWidget(this);
  2. back->setControl("{D27CDB6E-AE6D-11cf-96B8-444553540000}"); // Flash Player
  3. back->setProperty("Movie", QDir("test.swf").absolutePath());
  4.  
  5. QLabel *textLabel = new QLabel(text, this);
  6. textLabel->setAlignment(Qt::AlignCenter);
  7.  
  8. back->setGeometry(0, 0, 112, 57);
  9. textLabel->setGeometry(0, 0, 112, 57);
To copy to clipboard, switch view to plain text mode