hi.. I' trying to use a the gtkmozembed
the code in the pygtk docs works... but when I try to put the gtkmozembed in
a fixed container like this:
import gtk
import gtkmozembed
class TinyGecko:
def __init__(self):
self.moz = gtkmozembed.MozEmbed()
win = gtk.Window()
win.set_size_request(800,600)
self.fixed = gtk.Fixed()
self.fixed.put(self.moz,200,200)
win.show_all()
self.moz.load_url('http://www.google.cl')
if __name__ == '__main__':
TinyGecko()
gtk.main()
the program run but does not load tthe url...
any ideas?
cheers
_______________________________________________
pygtk mailing list [email protected]
http://www.daa.com.au/mailman/listinfo/pygtk
Read the PyGTK FAQ: http://www.async.com.br/faq/pygtk/