Python Forum
Search Results
Post Author Forum Replies Views Posted [asc]
    Thread: Disable anti aliasing for text
Post: RE: Disable anti aliasing for text

from tkinter import * from tkinter import ttk root = Tk() root.overrideredirect(True) root.geometry('+1000+500') root.lift() root.wm_attributes('-topmost', True) root.wm_attributes('-disabled', Tru...
AnonymousNobody GUI 3 6,877 Aug-11-2017, 07:05 PM
    Thread: Disable anti aliasing for text
Post: Disable anti aliasing for text

I apologize for asking another question, but how can I disable text anti-aliasing in tkinter? I have tried padx= and pady= -1 and -2, but neither works. Will I just have to try to install tkinter 8.4?
AnonymousNobody GUI 3 6,877 Aug-11-2017, 04:12 AM
    Thread: Trying to display a changing variable
Post: RE: Trying to display a changing variable

I have solved it ☻. #\snipped/ from tkinter import * from tkinter import ttk root = Tk() Vortojn = Label(root, justify = LEFT) Vortojn.pack() V = StringVar() Vortojn['textvariable'] = V V.set('Bonvolu...
AnonymousNobody GUI 9 7,093 Aug-10-2017, 03:52 AM
    Thread: Trying to display a changing variable
Post: RE: Trying to display a changing variable

Here it is, forgive the majority being not in english. from datetime import datetime import time import math #https://ssd.jpl.nasa.gov/horizons.cgi?s_time=1#top #https://ssd.jpl.nasa.gov/sbdb.cgi #Wol...
AnonymousNobody GUI 9 7,093 Aug-09-2017, 02:33 AM
    Thread: Trying to display a changing variable
Post: RE: Trying to display a changing variable

I have one while loop that is meant to break when a condition is met (for finding the least common multiple of a number).
AnonymousNobody GUI 9 7,093 Aug-08-2017, 07:48 PM
    Thread: Trying to display a changing variable
Post: RE: Trying to display a changing variable

I have made all tkinter related things in my code identical to what you (each) said, but it is not working (although if I use all of your code, it does). I think the problem is in the function, is it ...
AnonymousNobody GUI 9 7,093 Aug-08-2017, 06:53 PM
    Thread: Trying to display a changing variable
Post: Trying to display a changing variable

I have been trying to create a tkinter display of a variable that changes semi-regularly, but I cannot seem to get it to update regardless of what I try. I have tried config(), StringVar(), and global...
AnonymousNobody GUI 9 7,093 Aug-06-2017, 04:48 AM

User Panel Messages

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