Kaydet (Commit) 55a0bde2 authored tarafından Jack Jansen's avatar Jack Jansen

Handle the ****/**** appleevent wildcard when called as a main program, so that…

Handle the ****/**** appleevent wildcard when called as a main program, so that it becomes a handy debugging tool (BuildApplet, copy aete resource, apply applescript to it).
üst 486f1382
...@@ -176,7 +176,7 @@ class _Test(AEServer, MiniApplication): ...@@ -176,7 +176,7 @@ class _Test(AEServer, MiniApplication):
AEServer.__init__(self) AEServer.__init__(self)
self.installaehandler('aevt', 'oapp', self.open_app) self.installaehandler('aevt', 'oapp', self.open_app)
self.installaehandler('aevt', 'quit', self.quit) self.installaehandler('aevt', 'quit', self.quit)
self.installaehandler('aevt', '****', self.other) self.installaehandler('****', '****', self.other)
self.mainloop() self.mainloop()
def quit(self, **args): def quit(self, **args):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment