hi every one

I’m trying to capture an activeX window (flashmethode)

for printing capture

does any one know how to print or capture a Macromedia Flash activeX

on wxpython

i’ve found a methode for capture memory shot but got an unknown error

context = wxClientDC(self)
memory = wxMemoryDC()
x,y = self.GetClientSizeTuple()
bitmap = wxEmptyBitmap( x,y, -1 )
memory.SelectObject( bitmap )
memory.Blit( 0,0,x,y, context, 0,0)
memory.SelectObject( wxNullBitmap)
bitmap.SaveFile( “test.bmp”, wxBITMAP_TYPE_BMP )

===> “TypeError: Unable to convert value to expected type: (unsupported type 29) for parameter 0”

thank’s for help for a newbie