<div>Hello Tutor,</div><div> </div><div>     Quick question. Working on a new game and want to build in a GUI. TkInter seems to fit the bill except for one small item. Both Pygame and TkInter create windows. (Screen in Pygame, and the Root widget in TkInter) Is there a way to combined these two so I can use all my Pygame sprites and objects and any TkInter bars and buttons all in one screen? My best guess would be something along this line.</div>
<div> </div><div>screen = pygame.display.set_mode((640, 420))</div><div>root = Tk(screen)</div><div> </div><div>or maybe this...</div><div> </div><div>screen = Tk(pygame.display.set_mode((640, 420))</div><div> </div><div>
I really just need Tkinter for some easy buttons and stuff, everything else I can do in Pygame. Any thoughts? Thanks for the assist.</div><div> </div><div>Greg</div>