I am integrating a flash movie with my VC++ / MFC Dialog based application. In order to make integration possible I am using the activeX control flash.ocx which comes up with the class CShockwaveFlash.

Everything is fine. I want the background of the movie to be transparent. For that I even used this code.

Code:
CShockwaveFlash m_flSample;

m_flSample.SetWMode ("Transparent");
but still its showing white background on the flash control. Can anyone help me in solving this problem?

Thanks in advance