The tips show nicely, but how can I see if the “Show tips on startup” checkbox has been checked? I want to take this boolean value and write it to a preferences file, and, on the next startup, load based on the value of this boolean.
The tips show nicely, but how can I see if the "Show tips on startup" checkbox has been checked? I want to take this boolean value and write it to a preferences file, and, on the next startup, load based on the value of this boolean.
Move the call to wx.ShowTip into another function, and then use wx.CallAfter to call that function. In that function you can test the return value of wx.ShowTip, which will be the value of the 'show tips on startup" checkbox.
···
--
Robin Dunn
Software Craftsman http://wxPython.org Java give you jitters? Relax with wxPython!