Frequently Asked Questions
How to I change the target platform?
from uxGUI import *
uxGUI.uxPlatform = 'gtk' #<-- Add this line
Otherwise it tries to deduce the platform from you operating system and installed python modules.
My window freezes everytime I click something!
You probably have an event handler that is not returning fast enough. Luckily you can specify that it should run in a seperate thread like this:
self.addEvent('click',self.myHandler',True)
uxPython complains about missing DLLs or something.
Currently you need to download and install the following:
uxPython uses cairo and pango. The above is currently the most convenient way to get them.