Tagged Questions
-1
votes
3answers
29 views
Iterating over controls in wxPython in order to save session data
I have a GUI written in wxPython (with boa constructor).
I would like to save a user's session to a file, to be loaded the next time the application starts.
I would like to avoid saving each value ...
0
votes
1answer
27 views
How to converter Pyw to executable in Ubuntu?
i have a wxPython(with Python 2.7 64x) script, and this script was been created on Ubuntu 12.
Well, i wanna execute this wxPython as executable on Windows(doubleclick), but on Ubuntu.
I tried change ...
-1
votes
2answers
64 views
How to integrate simpleGUI with python 2.7 and 3.0 shell
I am learning Python from coursera. In this course they use simpleGUI module on Codeskulpture. Can anyone tell me how to integrate simpleGUI with python 2.7 and 3.0 shell...
Thanks
1
vote
1answer
36 views
passing variables from one class to another in wxpython
I have a problem with passing textCtrl data from one class to another in wxpython. I tried using the instance method of passing variables but if I use init_function it is only relevant at the start ...
0
votes
2answers
31 views
how do you connect the virtual keys so that they print to the text field on top?
i set up the format of the hebrew keyboard but cant figure out how to get the keys to work so that what you type is shown in the text field on top. "keyboard" contains a function for each key. in ...
3
votes
1answer
35 views
object has no attribute show
I have installed wxpython successfully which i verified by
import wx
But when I write a code
import wx
class gui(wx.Frame):
def __init__(self,parent,id):
wx.Frame.__init__(self, ...
0
votes
2answers
45 views
Enthought Mayavi embedding with wx problems
At first my running system:
I use Windows 8 Pro and Mayavi 4.3 from the repository together with wxPython 2.9.4.0 at Python 2.7.4 but also had the same issue with mayavi 4.2.1 from the EPD package...
...
0
votes
1answer
23 views
How to Keep Live Video in pythoncard
I have a PythonCard GUI Form with the Image, Signatue filelds. I need to capture the image from the Live stream,
I am trying to inject my live video as a pythoncard component like staticbox or ...
0
votes
0answers
18 views
Let thread-daemon wait until a certain “final value” is met
I have a small issue with a deamon process I'm running inside my Python script.
This is my main script;
# -*- coding: utf-8 -*-
import os
import wx
import threading
from library.gui import WebGui
...
1
vote
0answers
30 views
Global event listeners in wxPython
I have a wx.html2 widget in my panel. Sadly wx.html2 doesn't have many event listeners (http://wxpython.org/Phoenix/docs/html/html2.WebView.html#events-events-emitted-by-this-class).
Now I have this ...
0
votes
3answers
47 views
Wxpython gui for task scheduler
I'am asked to develop a GUI similar to a trigger window in task scheduler.I am trying my best to do it and i am stuck in creating multiple panels in a single frame.Below is the snapshot of how my GUI ...
0
votes
1answer
33 views
wxPython unexpected indent [duplicate]
Starting on wxPython and getting an unexpected indent error.
File "gui_texteditor_men.py", line 18
helpMenu= wx.Menu()
^
IndentationError: unexpected indent
I've checked my code, (im using ...
0
votes
2answers
63 views
wxPython with data string as message
How can I use wxPython to take data string which is obtained as part after calculations and display it as a message or report with OK/Cancel options? It would then be upto me to either save or cancel ...
0
votes
1answer
53 views
wx.StaticBitmap - simple transparency (mask, png, bmp?)
After 1 week of constant failure I'm still not able to do a simple task: Load a png with alpha channel or with white background (in example bellow) and have it maintain its transparency in ...
0
votes
1answer
35 views
images in layers with movement and transparency - wxpython
It might sound unproper 'images in layers' like in Photoshop but in fact that is what I have and would like to make working.
I use a set of wx.boxsizer's to have a nice&organized screen after ...