Tagged Questions
The clutter-gui tag has no wiki summary.
3
votes
1answer
2k views
Introduction to the Python Clutter bindings?
I've had a search around but I haven't been able to find decent online tutorials for the recent clutter bindings. There are guides for 0.4 and 0.6 around but 0.8 is supposed to be very different ...
1
vote
1answer
196 views
Clutter on OSX — “Unable to find suitable GL visual” error
I am looking to try out clutter (http://www.clutter-project.org) on an OSX machine (10.6). I installed the toolkit first by setting up required dependencies via macports and then installing clutter ...
0
votes
1answer
168 views
clutter UI library wrapper
I want to use Clutter library but not in C/C++ languages. I want a more high level, maybe dynamic language for easy & speed of development to prototype some UI ideas. Also, if posible, it must ...
0
votes
2answers
100 views
Clutter does not update screen outside of breakpoints
I have some code:
l1 = clutter.Label()
l1.set_position(100,100)
for i in range(0,10):
l1.set_text(str(i))
time.sleep(1)
That is designed to show a count from 1 to 10 seconds on the screen in ...