hey i wqn to make my py window bigger, i do this and the movie playing will not 
increase in size any one got any ides on how to fix this
def Paper_v_Rock(self):
        mov_name = "video1.mpg"
        pygame.init()
        screen = pygame.display.set_mode((320, 240)) --- i increase the size 
here
        video = pygame.movie.Movie(mov_name)
        #screen = pygame.display.set_mode(video.get_size()) ---- and hash this 
out but the screen size increases but the movie does not
        video.play()
        while video.get_busy():
            for event in pygame.event.get():
                if event.type == pygame.QUIT:
                    break
        pygame.quit() #uninitializes pygame modules.
        pygame.init()

________________________________
This message is intended for the addressee named and may contain privileged 
information or confidential information or both. If you are not the intended 
recipient please delete it and notify the sender.

Reply via email to