Now I just get this error message. AttributeError: 'int' object has no attribute 'image'
But the picture appears so I am almost their. ---START--- from Tkinter import * class App: def __init__(self, root): self.MainFrame = Canvas(root) self.MainFrame.pack(fill=BOTH, expand=1) BackgroundFile = PhotoImage(file="Background.GIF") Background = self.MainFrame.create_image(0, 0, image=BackgroundFile) Background.image = BackgroundFile # keep a reference! root = Tk() app = App(root) root.mainloop() -- http://mail.python.org/mailman/listinfo/python-list