Oct 11, 2011 #1 xixonga Programmer Oct 6, 2011 6 PT Hi, im trying to put several image buttons inside a frame or some similar box where i can organize them with grid command...any way i can do this? regards
Hi, im trying to put several image buttons inside a frame or some similar box where i can organize them with grid command...any way i can do this? regards
Oct 11, 2011 #2 Bong Programmer Dec 22, 1999 2,063 US When you say "image button" do you mean "a button widget with an image on it instead of text"? If so, I think you can only use ".gif"s: Code: set p [image create photo -file e:/bong/rr.gif] pack [button .b -image $p] -side top _________________ Bob Rashkin Upvote 0 Downvote
When you say "image button" do you mean "a button widget with an image on it instead of text"? If so, I think you can only use ".gif"s: Code: set p [image create photo -file e:/bong/rr.gif] pack [button .b -image $p] -side top _________________ Bob Rashkin