On Feb 3, 2005, at 14:08, Thomas wrote:
I am using > Mac OS X 10.3 > Python 2.3 one shipped with panther > MacPython-Panther-2.3 > wxPythonOSX-2.4.2.4-py2.3-panther.dmg > py2app-0.1.7.mpkg
When I run my app script using python my menu bar is missing.
When I use pythonw it’s working fine.
Using py2app I created a standalone application, but menu bar is missing in it.
After looking at a ktrace of the app, just to see if anything fishy was going on, I figured out that wxWidgets 2.4 expects a file to be present in a particular place and doesn't bother to tell you when it's not there. Awesome, good work guys ;)
Try this:
from distutils.core import setup
import py2app
setup(
app=['test.py'],
data_files=[('../Frameworks', [
'/usr/local/lib/libwx_mac-2.4.0.rsrc',
]
)],
)-bob
_______________________________________________ Pythonmac-SIG maillist - [email protected] http://mail.python.org/mailman/listinfo/pythonmac-sig
