Python Forum
[pyGame] Key Event not Working !...
Thread Rating:
  • 2 Vote(s) - 3.5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[pyGame] Key Event not Working !...
#1
Hey Python Programmers...

I get an script to change the colour of the screen into an other color (screen.fill),
but it doesn't works. This my script:

import pygame
import sys
  
screen = pygame.display.set_mode((800,600))
done = False
  
while not done:
    for event in pygame.event.get():
        if event.type == pygame.QUIT:
            done = True
        elif event.type == pygame.KEYDOWN:
            if event.key == pygame.K_ESCAPE:
                done = True
          
    screen.fill((255,255,255))
    pygame.display.update()
pygame.quit()
sys.exit()

for event in pygame.event.get():
    if event.type == pygame.KEYDOWN:
        if event.key == pygame.K_SPACE:
            screen.fill((255,000,000))
            pygame.display.update()
The seccond for loop must be change the screen to an red colour whenether you press K_SPACE.
I try to work with events and keys... but pyGame don't change the screen display of my simple
test...

Can anyone help me to correctivate my code, just i get an example how i can activate an events,
use keys in pyGame ?...

Can anyone help me to correctivate my code ?... The screen settup is good, but the screen will
not change the color... my display screen remains white, but i want activate an event thad makes
the screen red, when you press "SPACE" as key... can anyone give my an code and diffrence examples
how i can activate pyGame Key Events ?...

Thanks for help, Jamie.
Reply


Messages In This Thread
[pyGame] Key Event not Working !... - by JamieVanCadsand - Sep-29-2017, 02:31 PM
RE: [pyGame] Key Event not Working !... - by nilamo - Sep-29-2017, 04:33 PM
RE: [pyGame] Key Event not Working !... - by nilamo - Sep-29-2017, 05:50 PM
RE: [pyGame] Key Event not Working !... - by Mekire - Sep-29-2017, 07:43 PM
RE: [pyGame] Key Event not Working !... - by nilamo - Sep-29-2017, 08:31 PM
RE: [pyGame] Key Event not Working !... - by Mekire - Sep-29-2017, 08:59 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Problem with pygame.event.clear qq12346 1 2,127 Oct-05-2023, 08:39 AM
Last Post: patriciainman
  [pygame] Inventory items not working SheeppOSU 14 6,797 May-27-2019, 09:44 PM
Last Post: metulburr
  Python Pygame help pause event Trajme 0 3,395 Dec-06-2017, 09:14 PM
Last Post: Trajme

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020