Re: [pygame] Strangest thing..

2009-10-25 Thread Olof Bjarnason
2009/10/25 Christoph Gohlke cgoh...@uci.edu: I can reproduce this behavior on Windows 7, Python 2.6 64-bit, pygame 1.9.2.svn. Try comment out pygame.init(). Worked. 2009/10/25 Brian Fisher br...@hamsterrepublic.com: Your script is not creating a window - various things may not work right

[pygame] Strangest thing..

2009-10-24 Thread Olof Bjarnason
Hi pygame-users! I'm new to the list, but not to Python/PyGame. Tonight I tried playing some music, and noticed that my program only would play sound if I doulble-clicked the .py file in an explorer window, not if I ran the script from a command prompt. I'm on Vista, Python 2.6.1 and Pygame

Re: [pygame] Strangest thing..

2009-10-24 Thread Brian Fisher
Your script is not creating a window - various things may not work right without a window on windows. On Sat, Oct 24, 2009 at 4:00 PM, Olof Bjarnason olof.bjarna...@gmail.comwrote: Hi pygame-users! I'm new to the list, but not to Python/PyGame. Tonight I tried playing some music, and

Re: [pygame] Strangest thing..

2009-10-24 Thread Christoph Gohlke
I can reproduce this behavior on Windows 7, Python 2.6 64-bit, pygame 1.9.2.svn. Try comment out pygame.init(). Christoph On 10/24/2009 4:00 PM, Olof Bjarnason wrote: Hi pygame-users! I'm new to the list, but not to Python/PyGame. Tonight I tried playing some music, and noticed that my

Re: [pygame] Strangest thing..

2009-10-24 Thread Kris Schnee
Brian Fisher wrote: Your script is not creating a window - various things may not work right without a window on windows. If that's the reason, maybe it has to do with SDL itself not being properly initialized?