Jul 7, 2003 #1 DrA10101 Programmer Jun 10, 2003 8 US I'm attempting to left justify the text on a button with something like: "btn configure -justify left -text {abc}" The text is, however, always centered on the button. Thanks in advance, Craig
I'm attempting to left justify the text on a button with something like: "btn configure -justify left -text {abc}" The text is, however, always centered on the button. Thanks in advance, Craig
Jul 7, 2003 1 #2 smugindividual Programmer Apr 14, 2003 104 US instead of justify use the anchor option. Anchor uses n e s w as arguments. You'll want "-anchor w" instead of "-justify left" You can also use ne nw se sw to place the text in the corner. Upvote 0 Downvote
instead of justify use the anchor option. Anchor uses n e s w as arguments. You'll want "-anchor w" instead of "-justify left" You can also use ne nw se sw to place the text in the corner.
Jul 7, 2003 Thread starter #3 DrA10101 Programmer Jun 10, 2003 8 US Thank you smugindividual. That was it. - Craig Upvote 0 Downvote