sure: C:\Documents and Settings\Gabriel>python Python 2.5.1 (r251:54863, Apr 18 2007, 08:51:08) [MSC v.1310 32 bit (Intel)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> import pygame >>> pygame.init() (6, 0) >>> screen = pygame.display.set_mode((400, 300)) >>> whiteSquare = pygame.surface.Surface((50,50)) >>> whiteSquare.fill((255,0,0)) <rect(0, 0, 50, 50)> >>> screen.blit(whiteSquare, (100,100)) <rect(100, 100, 50, 50)> >>> pygame.display.flip() >>> As you can guess nothing happens on my pygame window, while using the MSDOS(the real) python. --- On Tue, 7/8/08, Ian Mallett <geometrian@xxxxxxxxx> wrote: From: Ian Mallett <geometrian@xxxxxxxxx> |