From: John L. <jla...@gm...> - 2014-04-02 04:40:22
|
On Fri, Mar 28, 2014 at 3:11 PM, Joshua Jensen <jj...@wo...>wrote: > ----- Original Message ----- > From: John Labenski > Date: 3/28/2014 8:55 AM > > I added wxWebView support a while ago, but forgot to press send on my > > email. Let me know if it works for you. I just did the simplest test > > of creating a frame, a webview child and loaded a page. > Awesome. Can you add your sample to the wxLua distribution for easy out > of box testing? > > I've added it to the controls sample so you can see what events are emitted and when, but this is all the code it takes to get a browser window. f = wx.wxFrame(wx.NULL, -1, "wxWebView!") w = wxwebview.wxWebView.New(f, -1, "http://wxlua.sourceforge.net") f:Show() -John |