In article <[email protected]>, Adam Morris <[email protected]> wrote: > I have a python script that gives Keynote some added features useful to > teachers. It lets students interact with whatever is being projected right > at their desk. It's written in python using appscript but at the moment runs > entirely from the command line. > > I'm looking at giving it a GUI. I'm considering using the AppleScriptObjC > bridge, but that means converting all my convenience classes from > python/appscript into pure AppleScript (boo). The upside though is that I > could get started on that right away. > > I'd really rather use PyObjC but would need a helping hand getting started > on making a deployable Snow Leopard-only app, and getting it so that > appscript is included. How do I do that without requiring the user to have > appscript in its python path? This isn't the first time I've tried figuring > this out and don't understand how this works. Can someone point me in the > right direction?
Another suggestion is to look at using Greg Ewing's PyGUI project, an attempt at a modern cross-platform GUI API for Python. It uses PyObjC on OS X. http://www.cosc.canterbury.ac.nz/greg.ewing/python_gui/ -- Ned Deily, [email protected] _______________________________________________ Pythonmac-SIG maillist - [email protected] http://mail.python.org/mailman/listinfo/pythonmac-sig unsubscribe: http://mail.python.org/mailman/options/Pythonmac-SIG
