I don't know how to insert a picture into the window...Help me,please.Thnx very much!
I don't know how to insert a picture into the window...Help me,please.Thnx very much!
See this article for detailed information.
Basically you just do it like this:
Code:import TopWindow, graphics window = TopWindow.TopWindow() image = graphics.Image.open("C:\\myimage.jpg") #For example window.add_image(image, (20,40)) #And then specify whatever details you want, as shown in the article
Last edited by bogdan.galiceanu; 2008-06-18 at 17:45. Reason: Typo in code