Desciption This little script shows a daily updated radiation map of Germany. I found this source of information quite serious. Code: ======tcl package require base64 package require http package require Img catch { console show } # http::config -proxyhost -proxyport 8080 set hConn [::http::geturl http://odlinfo.bfs.de/bilder/germany_php.gif] catch {set data [::http::data $hConn]} catch {set imdata [::base64::encode $data]} image create photo IMG -data $imdata pack [label .l -image IMG] -fill both wm title . "Strahlungsverteilung" wm protocol . WM_DELETE_WINDOW {exit} ====== I had to wait a little on my low end Core2Duo on Ubuntu32 for the image to get created from the base64 encoded data, so be a little patient ;) <>Enter Category Here