Re: [pygame] How can I make another window POP up when I press a key during gameplay

2006-12-19 Thread Farai Aschwanden
What module you are using? Pygame? By default you cant easy create windows like window with Pygame, you have to create it manually (simple way: blitting a window image on the existing Pygame screen and fill it with whatever you want). You can implement and use GUI like frameworks like f.e. th

Re: [pygame] How can I make another window POP up when I press a key during gameplay

2006-12-18 Thread Pete Shinners
On Tue, 2006-12-19 at 00:21 -0600, Lamonte(Scheols/Demonic) wrote: > Question: How can I make another window POP up when I press a key > during gameplay > Still fairly new to the python style of coding so im wondering on how > to do this the correct way. The SDL library has no way to open second w

[pygame] How can I make another window POP up when I press a key during gameplay

2006-12-18 Thread Lamonte(Scheols/Demonic)
Question: How can I make another window POP up when I press a key during gameplay Still fairly new to the python style of coding so im wondering on how to do this the correct way.