Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~177 People Reached
Favorite Forums
Favorite Tags
Member Avatar for tuxworld

hi evrybody, what is my broblem in this code ? [code] #!/usr/bin/env python import pygtk pygtk.require('2.0') import gtk import time import os,sys class Example: def __init__(self): window = gtk.Window(gtk.WINDOW_TOPLEVEL) window.connect('destroy', lambda w: gtk.main_quit()) vbox=gtk.VBox(True,0) window.add(vbox) vbox.show() label= gtk.Label() vbox.pack_start(label,True,True,0) label.show() for i in xrange(5) : window.move(200+i,600) time.sleep(.1) label.set_label(str(i)) label.show() pass …

Member Avatar for Toba
0
128
Member Avatar for tuxworld

hi , In python (pygtk) , how can I create a popup window and attach a picture to it. I want to hide window's titlebar and borders. Actually, I want to show only the picture and nothing else. thanks. can you introducing sample?

0
49