I have a project of IOT where i am using python-3.6
on raspberry pi zero and tkinter
for GUI.
Pi is always playing video on a TV with direct HDMI (omxplayer
).
Problem:
I need to open a tkinter
GUI window to connect wifi but GUI display index is below than the omxplayer
screen.
What i want I want to display GUI on top over omxplayer screen to connect wi-fi.
I have tried:
1 root.wm_attributes("-topmost", 1)
#Not working wm is not defined
2 root.overridedirect(1)
root.wm_attributes("-topmost", 1)
#Window is jumping on top of every other applications but not over omxplayer.
3 root.attributes("-topmost", 1)
#Window is jumping on top of every other applications but not over omxplayer.
4 root.lift()
#Not working