Re: [pygame] Re: Pygame midiout not working...

2011-12-09 Thread René Dudfield
Hi ya, I got stuck trying to get the ppc compilers working on Lion... but I'll try again. cu. On Thu, Dec 8, 2011 at 5:51 PM, Anthony Palomba apalo...@austin.rr.comwrote: Hey folks, I was wondering if the Mac midi output issue has been resolved. Any word on a new build? Thanks,

Re: [pygame] Re: Pygame midiout not working...

2011-12-09 Thread Anthony Palomba
Hey René, Thanks for the update. I appreciate all your effort. Looking forward to doing some MIDI output on the Mac with pygame. -ap On Fri, Dec 9, 2011 at 12:47 PM, René Dudfield ren...@gmail.com wrote: Hi ya, I got stuck trying to get the ppc compilers working on Lion... but I'll

Re: [pygame] Pygame midiout not working...

2011-12-09 Thread Zack Baker
Hey everyone i am having some problems importing sprites into lion, i know this is the wrong thread but could you direct me on how to start a new one On Dec 9, 2011, at 2:06 PM, Anthony Palomba wrote: Hey René, Thanks for the update. I appreciate all your effort. Looking forward to doing

Re: [pygame] Pygame midiout not working...

2011-12-09 Thread Anthony Palomba
Use the same address but different subject line. -ap On Fri, Dec 9, 2011 at 3:22 PM, Zack Baker zbaker1...@gmail.com wrote: Hey everyone i am having some problems importing sprites into lion, i know this is the wrong thread but could you direct me on how to start a new one On Dec 9,

[pygame] Help with pygame

2011-12-09 Thread Zack Baker
Hi, i wrote this code CODE: SELECT ALL import pygame car=pygame.image.load('car.jpeg') #i have tried car.png car.bmp and so on screen.blit(car, (50, 100)) pygame.display.flip() but i get this error CODE: SELECT ALL Traceback (most recent call last): File /Users/zackbaker/Desktop/Cartest.py,

Re: [pygame] Help with pygame

2011-12-09 Thread Brian Fisher
There's no way that code matches that error... the code tries to load car.jpeg, and the error is from a line that tried to load images.BMP. So what's the actual name of the image? If you're not sure, what do you get when you type ls from a command prompt in the same directory as the python

Re: [pygame] Help with pygame

2011-12-09 Thread Ian Mallett
Also screen is not defined. You'd get that error later.