On Fri, 20 Feb 2009 17:08:17 -0600, Arthur Pemberton <[email protected]> wrote: > I'm starting here as someone may be able to suggest something as it seems > weird. > > I have a .py generated from a .qrc. > > I have several QActions which load PNGs successfully from my > resources.py just fine. My .ui was done using Qt Designer. > > After py2exe, app seems to work just fine, including icons for the > QActions (I have them on a toolbar). Except my dynamically loaded .gif > no longer works.
That's becauase you're not shipping plugins. You can use PyInstaller and follow this specific instruction: http://pyinstaller.python-hosting.com/wiki/PyQtPluginsWorkaround until the support for automatically shipping plugins is completed. -- Giovanni Bajo Develer S.r.l. http://www.develer.com _______________________________________________ PyQt mailing list [email protected] http://www.riverbankcomputing.com/mailman/listinfo/pyqt
