Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 78 results for
scrolledtext
- Page 1
Re: Problem with ScrolledText (it's scrool bar)
Programming
Software Development
10 Years Ago
by Niloofar24
… http://stackoverflow.com/questions/17657212/how-to-code-the-tkinter-
scrolledtext
-module On that page you can see an image of… a little window taht has a
ScrolledText
widget on it with borders. You can see green borders…. I want something like that. AS you see, that
ScrolledText
widget has not fixed whole the window, it lets us…
Problem with ScrolledText (it's scrool bar)
Programming
Software Development
10 Years Ago
by Niloofar24
Hello. I have used
ScrolledText
in my code, the scroll bar that appears is attached to the frame and although it scrolls the text box contents, I want that it was attached to the text widget itself. What can i do?
Exploring Tkinter's ScrolledText Widget (Python)
Programming
Software Development
10 Years Ago
by vegaseat
The Tkinter GUI toolkit comes with a scrolled text widget that is called
ScrolledText
. To get access to it you have to import it separately. It allows you to display large amounts of text in a small space.
Re: Exploring Tkinter's ScrolledText Widget (Python)
Programming
Software Development
9 Years Ago
by toyota_1
I wanted to add another textbox to bottom. That textbox act as input. Just single line only but no
scrolledtext
. in old python2: entry = Entry(root, width = 20) entry.pack( side = BOTTOM ) How can I used scrolledtedtext without scrolling?
Re: Problem with ScrolledText (it's scrool bar)
Programming
Software Development
10 Years Ago
by Niloofar24
And How can i refresh an ScrollText widget? I have a Tkinter window with an entry box and add button and refresh button and scrolltext widget. The first time i run the program, the text appears on the scrolltext widget but when i add a word, and push the refresh button, it wont refresh the scrolltext widget with new word. why?
Re: Problem with ScrolledText (it's scrool bar)
Programming
Software Development
10 Years Ago
by HiHe
Since I am not much of a mindreader, what does your code look like at this time?
Re: Exploring Tkinter's ScrolledText Widget (Python)
Programming
Software Development
10 Years Ago
by BustACode
Great stuff. I did't know that that capability was availble. Thanks.
How to use 2to3.py conversion, output text to scrollable window
Programming
Software Development
12 Years Ago
by TrustyTony
… -1,5 +1,5 @@ -from
ScrolledText
import
ScrolledText
-from Tkinter import BOTH, YES, END +from tkinter.
scrolledtext
import
ScrolledText
+from tkinter import BOTH, YES… 2to3.py conversion script. """ from tkinter.
scrolledtext
import
ScrolledText
from tkinter import BOTH, YES, END fn = 'f:/…
Tkinter: protecting text in the Entry widget
Programming
Software Development
19 Years Ago
by G-Do
…included): [CODE]import os from Tkinter import * from
ScrolledText
import
ScrolledText
# -- The application class class Dumbshell: # --…self.mainframe.pack() # Add a
ScrolledText
widget (the display) self.display =
ScrolledText
(self.mainframe, height=self.display_height,…
Controlling ONE text widget with two scrollars
Programming
Software Development
14 Years Ago
by G_S
….mainloop()[/code] This is my try: [code]import tkinter.
scrolledtext
try: from Tkinter import * except ImportError: ## Python 3…orient=VERTICAL) self.b1 = tkinter.
scrolledtext
.
ScrolledText
(master, yscrollcommand=scrollbar.set) self.b2 = tkinter.
scrolledtext
.
ScrolledText
(master, yscrollcommand=scrollbar.set) scrollbar.…
Re: python3-tk scratchpad advice needed
Programming
Software Development
9 Years Ago
by Mickey_2
…import Tk, END, INSERT from tkinter.
scrolledtext
import
ScrolledText
from tkinter.filedialog import asksaveasfilename, askopenfilename class… self.open_file) self.create_editor(
ScrolledText
) def create_editor(self,
ScrolledText
): self.editing_window =
ScrolledText
(self.display) self.editing_window.…
Re: Tkinter: protecting text in the Entry widget
Programming
Software Development
19 Years Ago
by G-Do
… command-line), then flattened the border around the Entry and
ScrolledText
widgets? With the exception of the scrollbar on the display… clarity's sake: [CODE]import os from Tkinter import * from
ScrolledText
import
ScrolledText
# -- The application class class Dumbwidget: # -- Initializes new instances of…
python3-tk scratchpad advice needed
Programming
Software Development
9 Years Ago
by Mickey_2
…from tkinter import Tk, END, INSERT from tkinter.
scrolledtext
import
ScrolledText
from tkinter.filedialog import asksaveasfilename, askopenfilename class Scratchpad…>', self.paste) def create_editor(self,
ScrolledText
): self.editing_window =
ScrolledText
(self.display) self.editing_window.configure(fg='gold',…
Re: python3-tk scratchpad advice needed
Programming
Software Development
9 Years Ago
by slate
…tkinter import Tk, END, INSERT from tkinter.
scrolledtext
import
ScrolledText
from tkinter.filedialog import asksaveasfilename, askopenfilename class …self.create_editor() def create_editor(self): self.editing_window =
ScrolledText
(self.display) self.editing_window.configure(fg='gold', bg='…
Plz Help..
Programming
Software Development
15 Years Ago
by Memo..~
…); memoDi.setBackground(Color.WHITE); JScrollPane
scrolledText
=new JScrollPane(memoDi);
scrolledText
.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);
scrolledText
.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS); textpanel.add(
scrolledText
); add(textpanel,BorderLayout.CENTER…
How do I change the text within an already existing tkinter text widget
Programming
Software Development
10 Years Ago
by biocompute
… value = self.ent.get() btn.pack(side=TOP) class
ScrolledText
(Frame): # This class creates a text widget that can be…self.top_left = article_review_entry_button_widget(self).pack(side=LEFT) #self.top_right =
ScrolledText
(self, text= self.text, width=50, height=15).pack(side…
Re: How do I change the text within an already existing tkinter text widget
Programming
Software Development
10 Years Ago
by vegaseat
`self.top_right =
ScrolledText
(self, text=self.text, width=50, height=15)` the instance you get refers to the Frame object and that does not have a 'text' argument. The line `Frame.__init__(self, parent)` in class
ScrolledText
makes that the instance self You can test it with `print(self.top_right.config()['class'])`
Re: How do I change the text within an already existing tkinter text widget
Programming
Software Development
10 Years Ago
by biocompute
Hello, Thank you for your response. Which class is written incorrectly,
ScrolledText
?
ScrolledText
seems to work correctly as it creates a scrolled text widget that works correctly as a stand alone widget. If my class is written incorrectly how do I correct it? Thanks again, George
Re: How do I change the text within an already existing tkinter text widget
Programming
Software Development
10 Years Ago
by vegaseat
… the Text widget inside the class this way self.top_right =
ScrolledText
(self, text=self.text, width=50, height=15) text_widget = self… a method called settext(self, text='', file=None) in class
ScrolledText
, so use it. `self.top_right.settext('any string you want…
How to save the edited photo TKINTEr as jpg with asksaveasfilename
Programming
Software Development
5 Years Ago
by John_245
… from tkinter import * from tkinter.filedialog import asksaveasfilename from tkinter.
scrolledtext
import
ScrolledText
from PIL import Image, ImageTk from PIL import * window… = Entry(window, width=35, ).place(x=170, y=380) Venue =
ScrolledText
(window, width=35, background="#150051").place(x=57…
Tkinter Addressbook
Programming
Software Development
18 Years Ago
by dwrick
… is named AddressBookGui.py from Tkinter import * import tkMessageBox from
ScrolledText
import * import project class GUI: def __init__(self): root = Tk… = 'both') i.pack(side = 'top',fill = 'both',expand = 1) thetext =
ScrolledText
(i) thetext.pack(side = 'top',fill = 'both',expand =1) root…
Need help with text editor
Programming
Software Development
11 Years Ago
by pygeek
… #coding=utf8 import Tkinter as tk from Tkinter import * from
ScrolledText
import * import tkFileDialog import tkMessageBox def small_command(): textPad.config(font…") root = tk.Tk(className=" Pytext") textPad =
ScrolledText
(root, width=100, height=80) menu = tk.Menu(root) root…
MySQLdb interface problem
Programming
Databases
15 Years Ago
by bhanu1225
… imaplib sre_parse PixMapWrapper appletrawmain imghdr stat Queue appletrunner imp statvfs
ScrolledText
argvemulator imputil string SimpleDialog array inspect stringold SimpleHTTPServer asynchat…
Line number in Tkinter Text field
Programming
Software Development
15 Years Ago
by masterofpuppets
… editor window... for the text field I am using a
ScrolledText
widget. Any help or hint is appreciated :) thx in advance…
Tkinter.Text and '\r'
Programming
Software Development
14 Years Ago
by ampoliros
I am using a Pwm TextDialog (which inherits from
ScrolledText
which inherits from Text). It is being used as a …
Assigning tags to text in Tkinter
Programming
Software Development
12 Years Ago
by heinlein_
I have a script where text is inserted into a
scrolledText
widget, using Pmw megawidgets. A tag is assigned to the …
Re: Search engine (please help!)
Programming
Software Development
16 Years Ago
by froboi
…(window) global submitButton; submitButton = Button(window) global
scrolledText
;
scrolledText
=
ScrolledText
(window) global clearButton; clearButton = Button(window) def …'Your Materials', width = 11, borderwidth = 2); global
scrolledText
scrolledText
.configure(borderwidth = 2, relief = SUNKEN) global submitButton, …
Re: Create Several Frames From A List Populated By A Txt
Programming
Software Development
3 Years Ago
by razstec
… LabelFrame, Text, GROOVE, Button, Label,
scrolledtext
from tkinter.
scrolledtext
import
ScrolledText
import requests import json global get_inp_cond_endpoint, get_inp_cond_id…padx=10, pady=10, ipady=15) resp_json_input =
ScrolledText
(frm_txt_json_case, width=75, height=10, wrap=tk.WORD…
Re: Create Several Frames From A List Populated By A Txt
Programming
Software Development
3 Years Ago
by Schol-R-LEA
… LabelFrame, Text, GROOVE, Button, Label,
scrolledtext
from tkinter.
scrolledtext
import
ScrolledText
import requests import json def runpost(resp_json,reqtxt,…, padx=10, pady=10, ipady=15) resp_json_input =
ScrolledText
(frm_txt_json_case, width=75, height=10, wrap=tk.WORD) …
Re: Create Several Frames From A List Populated By A Txt
Programming
Software Development
3 Years Ago
by razstec
… LabelFrame, Text, GROOVE, Button, Label,
scrolledtext
from tkinter.
scrolledtext
import
ScrolledText
import requests import json def runpost(resp_json,reqtxt,…, padx=10, pady=10, ipady=15) resp_json_input =
ScrolledText
(frm_txt_json_case, width=75, height=10, wrap=tk.WORD) …
1
2
3
Next
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC