From: Tim B. <tb...@bi...> - 2004-05-14 21:37:11
|
The word button does not appear in my app .py file and it only appears in my resource .rsrc.py file once, in the component declaration for it's type (I have one button in this one). Also, my py2exe setup file is as basic as it gets: from distutils.core import setup import py2exe setup( name = "BOAMessenger", console = ["BOAMessenger.py"], data_files = [ (".", ["BOAMessenger.rsrc.py"]) ] ) This is why I think it's a PythonCard issue. T |