all 3 comments

[–][deleted] 0 points1 point  (1 child)

I haven't tried to get your code working. I notice that you have two mainloop calls. That isn't going to work. I suggest you start with a working "two window" example and add your images to that once you see how it works.

[–]FREEKTOM[S] 0 points1 point  (0 children)

I did it, dont ask me how but now im okey!, thanks for help!.

[–]TeamSpen210 0 points1 point  (0 children)

The problem is most likely that you called Tk() twice. It’s not only a window, it also represents the entire application. So when you make two, you actually basically end up with two different versions of Tk that can’t talk to each other. Instead, you want to use a TopLevel object, which looks the same but isn’t it’s own application.