Seems like the Flash container worked for most people, can you please try the new iFlash.dll, BMAX users use the following source :-
Global iPtr:Int = LoadLibraryA("iFlash.dll") Global EmbedFlash(movie_url:Byte Ptr,x:Int,y:Int,width:Int,height:Int,parent_hWnd:Long)"win32"= GetProcAddress(iPtr,"EmbedFlash") Global KillFlash()"win32" = GetProcAddress(iPtr,"KillFlash") Graphics 640,480,0 url:String = "http://igloader.com" ' Yes you can embed webpages! url:String = "file://c:/WINDOWS/Help/Tours/mmTour/segment1.swf" Print EmbedFlash(url.toCString(),0,0,512,256,primarydevice.hwnd) While Not KeyHit(KEY_ESCAPE) 'KillFlash() 'Flip 1 Wend