i know that there is alot of these questions around, some thats said to work, and some thats said that dont work, however most of them are more than 2 years old, so i thought that something might have change that makes mine not work, what i want to do is simply make a tkinter window transparent, using python 3.4,
here is my code:
from tkinter import *
import time
root = Tk()
root.geometry('600x300')
root.wm_attributes('-alpha',0.3)
l = Label(root,bg='white',text='Text',width=50,height=20)
l.pack()
root.mainloop()
this creates a window, a label, etc, but i dont see any transparency, id realy like any help... thanks
oh, btw im using linux, ive got the wm_atributes from another website, its said to work, but it might have been meant that it works for windows