Python Forum
AttributeError: '_tkinter.tkapp' object has no attribute 'place_forget'
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
AttributeError: '_tkinter.tkapp' object has no attribute 'place_forget'
#6
edphilpot,
I created a similar script and posted it yesterday using one class my quiz_generator
in your code you have created a Frame named it view and pass that to other functions.
def getView(self, window):
        view = Frame(window)
in a class you can change it to:
def getView(self, window):
    self.view = Frame(window)
    self.view.place(x=50,y=50)
    ...
and reference it in other functions as without using global:
def unpackView(self): 
    self.view.place_forget()
    askQuestion()
best of luck,
joe
Reply


Messages In This Thread
RE: AttributeError: '_tkinter.tkapp' object has no attribute 'place_forget' - by joe_momma - Dec-20-2019, 09:52 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  'NoneType' object has no attribute 'get' zunebuggy 8 1,394 Oct-13-2023, 06:39 PM
Last Post: zunebuggy
  tkinter AttributeError: 'GUI' object has no attribute pfdjhfuys 3 1,582 May-18-2023, 03:30 PM
Last Post: pfdjhfuys
  [Kivy] Windows 10: AttributeError: 'WM_PenProvider' object has no attribute 'hwnd' mikepy 1 2,342 Feb-20-2023, 09:26 PM
Last Post: deanhystad
  [Tkinter] Can't update label in new tk window, object has no attribute tompranks 3 3,570 Aug-30-2022, 08:44 AM
Last Post: tompranks
  AttributeError: 'NoneType' object has no attribute 'get' George87 5 15,516 Dec-23-2021, 04:47 AM
Last Post: George87
  [PyQt] AttributeError: 'NoneType' object has no attribute 'text' speedev 9 11,464 Sep-25-2021, 06:14 PM
Last Post: Axel_Erfurt
  [Tkinter] _tkinter.TclError: can't invoke "destroy" command: application has been destroyed knoxvilles_joker 6 15,657 Apr-25-2021, 08:41 PM
Last Post: knoxvilles_joker
  [Tkinter] AttributeError: '' object has no attribute 'tk' Maryan 2 14,697 Oct-29-2020, 11:57 PM
Last Post: Maryan
  [Tkinter] AttributeError: 'tuple' object has no attribute 'replace' linuxhacker 7 6,898 Aug-08-2020, 12:47 AM
Last Post: linuxhacker
  [Tkinter] _tkinter.TclError: bitmap "Icon.gif" not defined djwilson0495 2 12,993 Aug-05-2020, 02:27 PM
Last Post: wuf

Forum Jump:

User Panel Messages

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