How to force Pygame frame to be placed on top of tkinter frame?
I found the feature wm_attributes('-topmost', 1)
for tkinter frame and that it works for setting Tkinter on Top. But I need this feature for Pygame Frame.
I found a post that using windll
SetWindowPos(pygame.display.get_wm_info()['window'], -1, x, y, 0, 0, 0x0001)
Unfortunately this did not work for me because I am using Raspberry Pi and this package was not compatible with it.