Jul 7, 2003 #1 DrA10101 Programmer Joined Jun 10, 2003 Messages 8 Location 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 Joined Apr 14, 2003 Messages 104 Location 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 Joined Jun 10, 2003 Messages 8 Location US Thank you smugindividual. That was it. - Craig Upvote 0 Downvote