Hi,

I'm trying to add flash into a richedit control via InsertObject method of IRichEditOle interface, i'm creating the flash using :

CoCreateInstance( CLSID_ShockwaveFlash , NULL , CLSCTX_INPROC_SERVER , IID_IShockwaveFlash , (void**) &pSwf);

after that i'm getting the interface for IOleObject using :

pSwf->QueryInterface(IID_IOleObject, (void**)&pObject);

now setting some params of the flash and the IOleObject i'm using InsertObject() method to insert the flash object to the richedit.

every thing seems to work well: the flash object gets inside the richedit, the problem is that i can't play the flash (All i see is a black squre) does any one have any idea what can be the problem???

thx is advance

ishay