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

Join 132,650 Programmers for FREE! Get instant access to thousands of experts, tutorials, code snippets, and more! There are 1,170 people online right now. Registration is fast and FREE... Join Now!




pygame

 
Reply to this topicStart new topic

pygame, window refuses to close

yanom
post 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

Go to the top of the page

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


#include <soul.h>

Group Icon
Joined: 7 Sep, 2006
Posts: 1,987



Thanked 78 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

Go to the top of the page

yanom
post 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

Go to the top of the page

Fast ReplyReply to this topicStart new topic
Time is now: 11/23/08 05:15AM

Live Help!

Tutorials

Programming

Web Development

Reference Sheets

Code Snippets

Bye Bye Ads

Free DIC T-Shirt

T-Shirt Example

Related Sites

Monthly Drawing

Thumb Drive

Partners

Top Contributors

Top 10 Kudos This Month