I have a wxPython based app which I am porting to Mac OS X, in that I need to show some
alerts which should look like native mac
alerts, so I am using pyobjc for that e.g.
import Cocoa
import wx
app = wx.PySimpleApp()
frame = wx.Frame(None, title="mac alert test")
app.SetTopWindow(frame)
frame.Show()
def onclick(event):
…