The HTML viewer control does not load images automatically. When coming across an image, the control sends an NM_INLINEIMAGE notification. (see also http://msdn.microsoft.com/en-us/library/ms838684.aspx). We need an event handler for this:
....def on_image(self, event):
........self.html_ctrl.set_image(event)
........# does not work properly without return statement !
........return True.
2009-03-26 13:35:32 UTC in PocketPyGui