help image scrolling
Available news archives: comp.lang.tcl - comp.lang.python - comp.security.firewalls - sci.crypt - comp.lang.php - comp.lang.javascript
Google
 
Web news.hping.org


comp.lang.tcl archive

help image scrolling

From: <suchodj@wanadoo.fr>
Date: Sat Apr 29 2006 - 18:19:25 CEST

Hello

after many difficulties i managed to get in the
text widget both an image and scrollbars.
I cannot find a way to scroll my image !!!
any help is welcomed
hereafter is my code
**********

#scrollbars
 text .t -yscrollcommand {.s set}
 scrollbar .s -command {.t yview}
pack .s -side right -fill y
pack .t -expand yes -fill both
#enabling jpeg
package require Img
#going to the image directory
cd C:/tmp/venise
#getting the image
set im [image create photo im -file 04.jpg]
#inserting image
.t image create end -image im

*******************
thank you
jerome
Received on Sun Apr 30 03:31:42 2006