Nico
Nico
@dmazzella You can install a snapshot build of wxPython for using RunScriptAsync. They are listed here: https://wxpython.org/Phoenix/snapshot-builds You can easily install a snapshot build via the pip package installer. For...
A basic demo: Code Example (click to expand) ```python import wx import wx.html2 class MyBrowser(wx.Dialog): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.browser = wx.html2.WebView.New(self, style=wx.NO_BORDER) self.browser.AddScriptMessageHandler("message_handler") self.Bind(wx.html2.EVT_WEBVIEW_LOADED, self.OnWebViewLoaded, self.browser) self.Bind(wx.html2.EVT_WEBVIEW_SCRIPT_MESSAGE_RECEIVED,...
@dmazzella I was a little curious... You can easily add the missing lines yourself in the meantime until there is a new release. Only two lines of code need to...