pygtk + py2exe + inno -> icon for shortcut

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • vishnu1986
    New Member
    • Oct 2009
    • 1

    pygtk + py2exe + inno -> icon for shortcut

    Hi guys,
    I saw quite a few posts regarding this but I was unable to solve this problem that I am facing.

    First off, when I do the following in my setup.py,

    windows=[
    {
    'script': 'gulhane.py',
    'icon_resources ': [(1, "icon.ico")]
    }
    ],

    Python crashes and I am unable to run the script using python setup.py py2exe.

    Second, I do not use the icon_resources field in windows but I add the file in the form of a data_file,

    data_files=[
    ('gui', [
    'gui/icon.ico'
    ]
    ),

    I am using Inno to compile the .exe created by py2exe. I try to access this file to add as an icon to the shortcut using,

    Name: "{group}\My APP"; Filename: "{app}\MyApp.ex e"; WorkingDir: "{app}"; IconFilename: "{app}\gui\icon .ico"

    making sure that I keep ChangesAssociat ions=yes

    I am unable to view the icon on the shortcut even after trying this. Could somebody please shed some light on this? Thank you in advance.

    - Vish
Working...