I have tried everything to try and create the menus shown below, yet I can not figure out how to cascade checkbuttons/checkboxes. I am new to Tkinter so I apologize if this is a stupid question, but I just want to know if the below photo is possible.
Thanks so much.
If this is a repeated question let me know, because I can't find any like it anywhere. Apologies for the low-quality photo!
Desired menu output
Related
This is on a windows computer.
Essentially, the component tree doesn't expand when I click on any of the options, thus, I can't create forms or do anything really that doesn't require me to hardcode this stuff myself.
Please forgive me if it's a really simple fix, I've just gotten into GUIs.
In this picture I've circled the minimized part. Any help on how to expand it would be greatly appreciated.
Me, being a newbie to both coding and Tkinter, could not figure out what any of the similar posts on this meant nor how to adapt them to my own purposes, nor whether they would work for me at all. So sorry if someone already answered this question, I checked on several sites and this site.
Essentially, I was hoping to be able to create a text scrolling animation on a text widget in Tkinter. For example, if you are confused about what I am talking about, I got the idea from a python game here, check it out to see what I mean: https://repl.it/talk/share/Yellow-Stone-Zombies-An-Apocalypse-Game-300-Cycles-Special/37364
However, I could not use the bit of code that the person who made that game used as it corresponded to the print function, not Tkinter in any way.
Does someone know how to achieve this on a TEXT WIDGET, NOT A CANVAS OR LABEL???
Thank you so much if you do, I have no code to show here because I literally do not know where to start, sorry if there is an obvious solution and I'm just so newbie that I don't see it.
EDIT: The question was answered in the comments.
In tkinter, python, I'm currently trying to make a program so when a button is clicked a canvas created shape/line/text is hidden/removed. Here's what I've tried:
line = canvas.create_line(...)
line.configure(state=HIDDEN)
this just simply comes up with an error message, so I'd like some help with this. Thanks you for your time :)
- Jake
I apologise for my poor english skills
canvas.delete(line) is the function you're looking for.
I advise you to consult online documentation on Tkinter before asking basic questions on SO. You can take a look at this website or this one for instance.
I am using MATLAB and SIMULINK and there is something missing there that is driving me crazy, but the question is not MATLAB-related.
At a certain point I have a window like that:
I would like to have the SELECT ALL button. I don't know why, but since a lot of years I am asking this feature to MathWorks but they don't implement it.
Anyway, I decided to do a workaround by myself.
I want to make a small script in Python which detect the text 'Tunable' and after it clicks automatically on ALL the checkboxes.
Is it possible to do it in Python ?
I found a solution to my problem.
If you are interested you can look at it in this video:
VIDEO YOUTUBE
I am happy to share ideas and to know your opinion.
I am trying to make a widget exactly like this,
I want mine to be exactly the same (same font, picture, ect). Does anyone know how I can do this? I think it is a wx.ListCtrl but I cant find an example on how to make it look like this.
Can you provide me an example on how to make this widget?
Thanks.
It's a report list. Don't forget to keep a reference to the image list yourself since the bindings are stupid and don't incref it when you assign it to the list.
If the widget brings up different panels when you click on the image, then it's probably a Listbook, not a ListCtrl. Plus those are images from the wxPython demo for the Listbook AND the Toolbook AND the Treebook demos, so I'm guessing it's one of those.