sorry about my post on pygame, but i'm having more trouble. frist off im ending the simple program that opens a window with
if event.type == QUIT:
raise SystemExit
That makes a window pop up asking me if i want to quit. Is there another way to exit the window?
I also figured that be able to toggle to fullscreen would help when making a game. I'll do something like
elif event.type == KEYDOWN and event.key == K_ESCAPE:
pygame.display.toggle_fullscreen()
and nothing happens. I havent had much time to look this up.
Thanks