Re: wx Python event question

2007-01-27 Thread dudds
Thanks Steve. On Jan 27, 8:01 pm, "Steve" <[EMAIL PROTECTED]> wrote: > use wx.Timer - you bind a method to a timer event and define the > timer's interval when you start it > > timer = wx.Timer(self, -1) > self.Bind(wx.EVT_TIMER, self.timerMethod, timer) > timer.Start(500) > > On Jan 27, 5:56 pm,

Re: wx Python event question

2007-01-27 Thread Steve
use wx.Timer - you bind a method to a timer event and define the timer's interval when you start it timer = wx.Timer(self, -1) self.Bind(wx.EVT_TIMER, self.timerMethod, timer) timer.Start(500) On Jan 27, 5:56 pm, "dudds" <[EMAIL PROTECTED]> wrote: > Hi I really haven't used wxPython before and I