import gtk import hildondesktop import os import gobject import threading,thread gtk.gdk.threads_init() import urllib FB_URL = 'http://somesite.com/getphotolist.php' class FbSlideshow(hildondesktop.HomeItem): def __init__(self): hildondesktop.HomeItem.__init__(self) #here i do other things like creating the UI, adding a label, etc self.do_get_poto() def do_get_photo(self): self.set_label( 'start thread') threading.Thread(target=self._startthread).start() def _startthread(self): self.set_label('in thread') url = FB_URL f=urllib.urlopen(url) self.set_label('done thread') def hd_plugin_get_objects(): plugin=FbSlideshow() return [plugin]