CURSOR_HAND

All,

I’m not sure why, but this doesn’t seem to give me a hand cursor. Instead, I get the usual arrow cursor on my macbook.

import wx

class CrossHair(wx.Frame):

def init(self, parent, id, title):

wx.Frame.init(self, parent, id, title, size=(250, 150))

self.SetBackgroundColour(‘WHITE’)

self.SetCursor(wx.StockCursor(wx.CURSOR_HAND))

self.Center()

self.Show()

app = wx.App(False)

CrossHair(None, -1, ‘CrossHair2’)

app.MainLoop()

D.

···


To unsubscribe, send email to wxPython-users+unsubscribe@googlegroups.com
or visit http://groups.google.com/group/wxPython-users?hl=en

Not all of the stock cursors are available on all platforms.

···

On 5/4/10 7:46 PM, David Arnold wrote:

All,

I'm not sure why, but this doesn't seem to give me a hand cursor.
Instead, I get the usual arrow cursor on my macbook.

--
Robin Dunn
Software Craftsman

--
To unsubscribe, send email to wxPython-users+unsubscribe@googlegroups.com
or visit http://groups.google.com/group/wxPython-users?hl=en