The start menu and application has no icon. It only has an icon on the titlebar of the application. What is happening here.
I've tried a setup.py as such:
from distutils.core import setup
import py2exe
setup(
data_files = ["coded-with-logo.png", "icon.ico", "aboutIcon.ico"],
options = {"py2exe": {"compressed": 2,
"optimize": 2,
"bundle_files": 3,
"xref": False,
"skip_archive": False,
"ascii": False
}
},
zipfile = None,
windows = [
{
"script": 'AnansiCalc.py',
"icon_resources": [(0x0004, "icon.ico")]
}
],
)
And I tried using PyBuilder. NEITHER adds an icon? I'm using Windows 8 if that matters at all :\

New Topic/Question
Reply




MultiQuote




|