I'm using wxWidgets through wxpython. Under MS Windows (python 2.7, wxwidgets v3.0), the following code hides the mouse cursor (where self is the top-level frame) :
cursor = wx.StockCursor(wx.CURSOR_BLANK)
self.SetCursor(cursor)
...this works regardless of whether the frame is full screen (ShowFullScreen).
However, on linux (specifically Ubuntu 12.04, python 2.7, wxwidgets v2.8), this does not work -- and it does not seem to throw any error.
Can someone point me in the right direction?