Aug-13-2020, 07:49 AM
Hello! Please help me!
I'm trying to create an application manager with Tkinter and I want the desktop['application#'] variables to open applications with names being SAME as the text on the buttons!
Here is my lambda:
![[Image: 9T4BE.png?trs=11b5a3f71afa486346eb25a5b3...9cc55fa4e3]](https://i.paste.pics/9T4BE.png?trs=11b5a3f71afa486346eb25a5b3141ea6c5b2fc873521ee40020dee9cc55fa4e3)
The output:
Please help as soon as possible!! Thank you!
I'm trying to create an application manager with Tkinter and I want the desktop['application#'] variables to open applications with names being SAME as the text on the buttons!
Here is my lambda:
func['run'] = lambda: "try: \n\texec(open('Applications/' + str(application{0}['text']) + '.py').read()) \nexcept Exception as err: \n\tprint(err)"aka
try: exec(open('Applications/' + str(application{0}['text']) + '.py').read()) except Exception as err: print(err)And the Desktop creator
def manager(): desktop = {} desktop['workspace'] = Canvas(corwin, bd=100) desktop['workspace'].place(x=105, y=0, relwidth=0.9, relheight=1, anchor=NW) desktop['openStorage'] = open('Applications/apps.corwin') desktop['readStorage'] = ast.literal_eval(desktop['openStorage'].read()) for x in range(len(list(desktop['readStorage'].values()))): temp['desktopDict'] = str(list(desktop['readStorage'].keys())[x]) desktop['application{0}'.format(x)] = Button(corwin, text=(str(desktop['readStorage'][str(temp['desktopDict'])]) + ' '), anchor='e', bg='black', font=('DIN Alternate', '15'), command=lambda: [exec("try: \n\texec(open('Applications/' + application0.cget('text') + '.py').read()) \nexcept Exception as err: \n\tprint(err)")]) desktop['application{0}'.format(x)].place(x=100, y=(25*x), width=100, anchor=NE)The Tkinter:
![[Image: 9T4BE.png?trs=11b5a3f71afa486346eb25a5b3...9cc55fa4e3]](https://i.paste.pics/9T4BE.png?trs=11b5a3f71afa486346eb25a5b3141ea6c5b2fc873521ee40020dee9cc55fa4e3)
The output:
Output:name 'application0' is not defined
name 'application0' is not defined
name 'application0' is not defined
name 'application0' is not defined
name 'application0' is not defined
name 'application0' is not defined
name 'application0' is not defined
name 'application0' is not defined
name 'application0' is not defined
(I clicked those buttons this much)Please help as soon as possible!! Thank you!