Tagged Questions

PythonCard is a cross-platform GUI construction kit for building desktop applications using the Python language.

learn more… | top users | synonyms

7
votes
2answers
290 views

How to send a value from Arduino to Python and then use that value

I am in the process of building a robot that is remote controlled using Python to send control messages via the Internet through a simple GUI. I have gotten part of my code working pretty well, the ...
2
votes
1answer
273 views

adding scrollbars to pythoncard application

scrollingwindow as main frame for the application is not supported yet for pythoncard. how can i add scrollbars to main frame(background)?
1
vote
1answer
106 views

How do I dynamically get a list of all PythonCard components in a GUI class?

Here is a sample resource file for PythonCard: { 'application':{ 'type':'Application', 'name':'Test Sounds', 'backgrounds': [ { 'type':'Background', 'name':'Test Sounds', ...
1
vote
1answer
116 views

How can I handle a mouseMiddleDrag event in PythonCard?

I would like to use the middle mouse button to drag an image in an application written in Python and using PythonCard/wxPython for the GUI. The latest version of PythonCard only implements a "left ...
1
vote
1answer
173 views

Pythoncard item setsize

Below is the base class of my pythoncard application class MyBackground(model.Background): def on_initialize(self, event): # if you have any initialization # including sizer ...
0
votes
2answers
144 views

Making a PythonCard File Dialog single select?

I'm working on a python application and have chosen to build the gui with PythonCard. I have need to have the user select a file to open, and in the context, selecting more than 1 file doesn't make ...
0
votes
2answers
160 views

Pythoncard textarea how to set text

I have created a textarea in my python project using Pythoncard The problem is, I don't know how to call it in my project to change the text. It's called myTextArea. Thanks
0
votes
2answers
729 views

Python wx (Python Card) logging subprocess output to window

There are similar questions to this one, but I'd like to see a clarified answer. I'm building a simple GUI with PythonCard to wrap a command line process. Specifically, it's a wrapper for a series of ...
0
votes
1answer
139 views

PythonCard - Can I launch a CustomDialog Stand Alone?

I have a CustomDialog I made to let the user configure settings. Normally I want this to be launched from a menu item within the main application which works fine. But during the install, I want to ...
0
votes
2answers
291 views

Does Pythoncard have an on change event?

I want to do some validation whenever the value of a textfield changes. I don't see an on change event mentioned in the documentation though.
0
votes
1answer
362 views

How to Change Mouse Cursor in PythonCard

How do I change the mouse cursor to indicate a waiting state using Python and PythonCard? I didn't see anything in the documentation.