Google Code Exporter

Results 21406 comments of Google Code Exporter

``` Project will move to Github. Find this issue at the new address (soon): https://github.com/cztomczak/phpdesktop/issues/150 ``` Original comment by `[email protected]` on 24 Aug 2015 at 3:34

What CEF version? 31.1 is the latest. What wxPython version? Please paste the whole wx version string that is displayed in the wxpython.py example in console (see for example http://cefpython.googlecode.com/git/cefpython/var/wxpython.png)....

See also Issue #80 that explains in details the need for the wx.WANTS_CHARS style for the keyboard to work. Original comment by `[email protected]` on 15 Dec 2014 at 7:44

the wx version string is "VERSION_STRING = '3.0.1.1'" the cefpython verison is "**version** = "31.0" I am sure following code exists in sample.py self.tabs.SetWindowStyleFlag(wx.WANTS_CHARS) I will try 31.1 later Original...

I can confirm this issue. Tested with cefpython3 31.2 for Python 2.7 64bit and wx.version=3.0.2.0 msw (classic). The issue occurs in both sample2.py and sample3.py. The sample1.py is running fine,...

@comment 5: The fix to propagate Char events to child windows - may require using Windows API (pywin32 extension) to send Char events to CEF browser child windows. You can...

This issue occurs in both wxPython 2.9 and 3.x. In 2.8 wx.WANTS_CHARS style is applied fine. Original comment by `[email protected]` on 17 Mar 2015 at 8:11

In wxPython 2.9 issue can be fixed in the wxpython.py example by setting the wx.WANTS_CHARS style on the top-level window. ``` win_style = wx.DEFAULT_FRAME_STYLE|wx.WANTS_CHARS parent = wx.GetApp().GetTopWindow() parent.SetWindowStyle(win_style) ``` However...

@comment 7: Have you actually been able to get this method working? I've tried your suggestion (Python 2.7, x64, wxPython 3.x), but the browser instance does not seem to receive...

@comment 9: I have tried to reproduce your solution for wxPython 2.9, but that didn't work either. Original comment by `[email protected]` on 27 May 2015 at 6:05