How to make click events pass though a tkinter window?

Bachmann

I have been playing with using tkinter to make overlays so some information would appear on top of the rest of the screen.

I'd rather not have this window block the mouse. Is there any way I can have it so click events pass though my overlay? So the window below my tkinter app receives the event.

Bryan Oakley

No, there is nothing built in to tkinter that would allow you to do that. The best that you could hope for is to capture an event, then use some sort of platform-specific tool that lets you create new events, and use the coordinates from the captured event to generate a new, non-tkinter event.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to make a Tkinter window not resizable?

From Dev

How to pass data between jquery click events

From Dev

How to make a window fullscreen in a secondary display with tkinter?

From Dev

How to make QtGui window process events whenever it is brought forward on the screen?

From Dev

How to make Electron tray click events working reliably?

From Dev

How to make tkinter Window floating in i3 windowmanager

From Dev

How to make state of window idle until button is pressed in python tkinter?

From Dev

How to make button command to open image inside window in tkinter?

From Dev

how to make only 1 new window when a button is clicked? tkinter

From Dev

How do you make an animation with the title of a Tkinter window?

From Dev

Logic within python and Tkinter: how to make a window run endlessly

From Dev

How do I make this button quit the parent window in tkinter?

From Dev

Make tkinter Window appear in the taskbar

From Dev

How can I make touch events pass through a UIView (similar to pointer-events:none in CSS)?

From Dev

window.addEventListener not being executed on click events

From Dev

Tkinter - How can I make a button can create new window and close the main window

From Dev

How to clear window with tkinter

From Dev

Detect mousemove but let click events pass through

From Dev

Tkinter: Window flash when attempting to click away

From Dev

How can I make a window appear on top of another window, without closing when I click the second?

From Dev

What might make click events slow to fire?

From Dev

How to resize window on click

From Dev

In awesome window manager, how can I make key bindings send keyboard events?

From Dev

How to handle click events on div

From Dev

How to print click events in Javascript

From Dev

How to handle click events with @Directive?

From Dev

python tkinter open new window with button click and close first window

From Dev

How can I make a single event handler handle ALL Button.Click events?

From Dev

How to make elements with high z-index allow click events at elements below?

Related Related

  1. 1

    How to make a Tkinter window not resizable?

  2. 2

    How to pass data between jquery click events

  3. 3

    How to make a window fullscreen in a secondary display with tkinter?

  4. 4

    How to make QtGui window process events whenever it is brought forward on the screen?

  5. 5

    How to make Electron tray click events working reliably?

  6. 6

    How to make tkinter Window floating in i3 windowmanager

  7. 7

    How to make state of window idle until button is pressed in python tkinter?

  8. 8

    How to make button command to open image inside window in tkinter?

  9. 9

    how to make only 1 new window when a button is clicked? tkinter

  10. 10

    How do you make an animation with the title of a Tkinter window?

  11. 11

    Logic within python and Tkinter: how to make a window run endlessly

  12. 12

    How do I make this button quit the parent window in tkinter?

  13. 13

    Make tkinter Window appear in the taskbar

  14. 14

    How can I make touch events pass through a UIView (similar to pointer-events:none in CSS)?

  15. 15

    window.addEventListener not being executed on click events

  16. 16

    Tkinter - How can I make a button can create new window and close the main window

  17. 17

    How to clear window with tkinter

  18. 18

    Detect mousemove but let click events pass through

  19. 19

    Tkinter: Window flash when attempting to click away

  20. 20

    How can I make a window appear on top of another window, without closing when I click the second?

  21. 21

    What might make click events slow to fire?

  22. 22

    How to resize window on click

  23. 23

    In awesome window manager, how can I make key bindings send keyboard events?

  24. 24

    How to handle click events on div

  25. 25

    How to print click events in Javascript

  26. 26

    How to handle click events with @Directive?

  27. 27

    python tkinter open new window with button click and close first window

  28. 28

    How can I make a single event handler handle ALL Button.Click events?

  29. 29

    How to make elements with high z-index allow click events at elements below?

HotTag

Archive