Python Forum
[Tkinter] Scroll at cursor position
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[Tkinter] Scroll at cursor position
#2
You could perhaps bind the Control-v event
from tkinter import *

def foo(event):
    print('foo() was called with', event)

root = Tk()
T = Text(root, height=10, width=30)
T.pack()
T.bind('<Control-v>', foo)

T.insert(END, "Just a text Widget\nwith 2 lines\n")
mainloop()
Reply


Messages In This Thread
Scroll at cursor position - by lollo - Jan-30-2018, 10:55 PM
RE: Scroll at cursor position - by Gribouillis - Jan-30-2018, 11:12 PM
RE: Scroll at cursor position - by lollo - Jan-31-2018, 06:50 AM
RE: Scroll at cursor position - by Gribouillis - Jan-31-2018, 07:23 AM
RE: Scroll at cursor position - by lollo - Jan-31-2018, 11:33 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  [PyQt] QTableView: scroll to top cell of the screen random_nick 2 3,004 Oct-08-2022, 12:29 AM
Last Post: random_nick
  [PyQt] How do I get a QScrollArea to scroll? LavaCreeperKing 9 8,131 Oct-29-2021, 08:33 AM
Last Post: Axel_Erfurt
  Treeview scroll selected node to top rfresh737 1 2,796 Apr-14-2021, 03:27 AM
Last Post: deanhystad
  [Tkinter] canvas widget scroll issue chrisdb 2 3,989 Apr-07-2021, 05:48 AM
Last Post: chrisdb
  [Tkinter] Help with scroll bars kraco 1 2,301 Sep-27-2020, 11:20 PM
Last Post: Larz60+
  [Tkinter] How to place scroll bar correctly scratchmyhead 1 4,031 May-18-2020, 04:17 PM
Last Post: scratchmyhead
  [Tkinter] Finding out what's under the cursor sabresong 3 2,871 Mar-28-2020, 02:52 PM
Last Post: sabresong
  Scroll frame with MouseWheel Nemesis 1 3,740 Mar-25-2020, 09:29 PM
Last Post: Nemesis
  [Kivy] Why I have to click twice to scroll? Hummingbird 0 2,409 Jan-06-2020, 09:08 PM
Last Post: Hummingbird
  [Tkinter] Scroll Bars going backwards goofygoo 2 2,763 Jun-07-2019, 05:07 PM
Last Post: goofygoo

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020