wx.lib.iewin and NewWindow3
Thursday, March 22nd, 2007Suppose your wxPython app is is using an embedded Internet Explorer window to display HTML. You want links clicked in that window to open the user’s default browser rather than following the link within the embedded Internet Explorer.
The obvious solution is to hook OnBeforeNavigate2 like so:
self.Bind(iewin.EVT_BeforeNavigate2, […]