All Questions
635
questions
0
votes
1
answer
31
views
My Kivy code doesn't detect checkbox selection
I have recently been trying Kivy for a personal proyect I wanted to do: an app that lets you create a DnD character with a few details. That character would store on a JSON file and load up on the ...
0
votes
1
answer
40
views
Problem selecting a "check-box" with python Selenium: click() launches the link in the HTML code
I am automating with Selenium & python some searches in a website (https://hemerotecadigital.bne.es/hd/es/advanced). Most of it is already done but one specific step I am still doing manually, and ...
0
votes
0
answers
44
views
Custom Tkinter checkbox loop
I have an unknown number of checkboxes (it is unknown because it depends on data files that change over time). However, as I saw on the web, you need a different variable for each checkbox to get True ...
0
votes
0
answers
41
views
Create a pdf that contains a flowchart with interactive checkboxes
I want to create a PDF document with a flowchart where each node represents a to-do task. The document should be interactive so that the task in each node contains a checkbox that can be ticked/...
1
vote
1
answer
73
views
How to add anonymous Checkboxes (or anything else) in ctkinter?
So recently I was creating an app that you can add Checkboxes to, and they were your works to do (to do list app), so I wanted to manage the Checkboxes that were added, and because they don't have ...
0
votes
0
answers
24
views
How to get multiple data from dynamic form by FLASK / HTML?
I work on python web app.
In a page i want users to chose their friends to add their organization. But to build that page i prepare data in flask side first. Then i send it to HTML. Then i use for ...
0
votes
1
answer
32
views
How do i make a checkbox that disables an entry?
from tkinter import *
import string
import random
root = Tk()
root.title("PASSWORD GENERATOR")
#root.geometry("550x300+300+300")
root.config(bg="blue")
#root.resizable(...
0
votes
0
answers
13
views
Checkboxes update in desktop/web client fails
I have an app which a message is updated that contains several blocks that have checkboxes with initial options. Slack desktop/web client only correctly updates the first checkbox in each block, while ...
-1
votes
1
answer
125
views
Please I beg support to flag a radio button in Python using PyPDF2
Below is my code. I'm able to fill out the text field in the PDF file, but when it comes to flagging the radio button, I do not find any way to fix.
The name of the radio button field is Case d'option ...
0
votes
1
answer
86
views
How to resolve is_selected() not returning True even if the checkbox is selected?
I'm using Selenium + python to check the status of a checkbox but it always returns False.
Checkbox HTML
I'm using XPath
value = "//span[@title='Select Physical']"
I'm using the code below ...
1
vote
1
answer
72
views
How to hide or show a canvas line controlled by sliders using Checkbuttom from Tkinter?
With the code below it is possible to control the amplitude and frequency of a triangular signal.
Just starting out with Python, I fail to hide or show a given signal using a Checkbutton from tkinter. ...
0
votes
1
answer
91
views
tkinter - show text/buttons/entry when checkbutton is checked and hide them when checkbutton is unchecked
I'm currently making a small application where I want the user to input some data, but there is an optional input. I want to use a checkbutton for that. If it is checked, the UI should show more input ...
1
vote
0
answers
51
views
Is there a way to check the toggle status of an object that has no control_type="CheckBox")
I'm trying to check the toggle status of a checkbox however it doesn't have a control type "CheckBox".
| | | | | | | | | | Static - 'Pairings:' (L299, T1063, ...
0
votes
2
answers
525
views
Detect if a checkbox is checked OpenCV
I am using OpenCV to process an image of a form which contains main checkboxes. I have used the pixel coordinates to crop around the checkbox so all I am left with is just the single checkbox. From ...
0
votes
2
answers
48
views
Tkinter issue regarding dynamically uncheck CheckBoxes
In Tkinter (Python) I try to dynamically uncheck a CheckBox when an another CheckBox is checked but the behavior is rather erratic.
If the first box is checked and i check the second one: the second ...