Hi!
I'am trying to make a program that dispalys a label with a image, but the rest of the program is "invisible", The problem I got is when I set the opacity, it affects the whole frame. This was ofcourse excepted, but I have not yet been able to make it ignore the label.
Here is the code:
from Tkinter import *
root = Tk()
root.wm_attributes('-alpha', 0.0)
photo = PhotoImage(file="image.gif")
w = Label(root, image=photo).pack()
root.mainloop()