Welcome to Dream.In.Code
Getting Help is Easy!

Join 136,786 Programmers for FREE! Get instant access to thousands of experts, tutorials, code snippets, and more! There are 2,365 people online right now. Registration is fast and FREE... Join Now!




pygame

 
Reply to this topicStart new topic

pygame, window refuses to close

yanom
12 Aug, 2008 - 09:31 AM
Post #1

New D.I.C Head
*

Joined: 5 Apr, 2008
Posts: 46


My Contributions
this is my first program with pygame, and the window doesn't close when i click the X in the top right corner. why is that? I am running ubuntu 8.04 on an Intel
CODE

import pygame
from pygame.locals import *
from sys import exit
pygame.init()
screen = pygame.display.set_mode((600, 440), 0, 32)
pygame.display.set_caption('pygame')
while True:
    for event in pygame.event.get():
        if event == QUIT:
            exit()
    pygame.display.update()


This post has been edited by yanom: 12 Aug, 2008 - 09:40 AM
User is offlineProfile CardPM
+Quote Post

BetaWar
RE: Pygame
12 Aug, 2008 - 11:48 AM
Post #2

#include <soul.h>
Group Icon

Joined: 7 Sep, 2006
Posts: 2,027



Thanked: 82 times
Dream Kudos: 1175
My Contributions
You need to look at the event type right now you are calling the event but that just says what has happened, if the event.type == QUIT then it is supposed to close. event will never = QUIT.

Try this:

CODE
import pygame
from pygame.locals import *
from sys import exit
pygame.init()
screen = pygame.display.set_mode((600, 440), 0, 32)
pygame.display.set_caption('pygame')
while True:
    for event in pygame.event.get():
        if event.type == QUIT:
            exit()
    pygame.display.update()


HTH
User is offlineProfile CardPM
+Quote Post

yanom
RE: Pygame
15 Aug, 2008 - 06:51 AM
Post #3

New D.I.C Head
*

Joined: 5 Apr, 2008
Posts: 46


My Contributions
o. thanks for the help, that worked.
User is offlineProfile CardPM
+Quote Post

Fast ReplyReply to this topicStart new topic
Time is now: 12/3/08 01:13PM

Live Help!

Tutorials

Programming

Web Development

Reference Sheets

Code Snippets

DIC Chatroom

Bye Bye Ads

Monthly Drawing

Thumb Drive

Top Contributors

Top 10 Kudos This Month