Hi, I am returning to the well; this time I am trying to:
1. Create a command button, which will launch a dialog box.
2. The dialog box will have two buttons.
3. When you move the cursor over the button the text on
the button will change from one thing to another and
stay that way for a set number of seconds with no click.
(if that is possible to have a "moveover" option)
I already have some code written and would like to just drop this added bit in. My existing code is as follows:
proc push_button {} {
... whatever ...
}
button .but -text "Push Me" -command "push_button"
pack .but
after you click on the button I would like the forementioned to take place.
Thanking you in advance,
W. T. Holmes
1. Create a command button, which will launch a dialog box.
2. The dialog box will have two buttons.
3. When you move the cursor over the button the text on
the button will change from one thing to another and
stay that way for a set number of seconds with no click.
(if that is possible to have a "moveover" option)
I already have some code written and would like to just drop this added bit in. My existing code is as follows:
proc push_button {} {
... whatever ...
}
button .but -text "Push Me" -command "push_button"
pack .but
after you click on the button I would like the forementioned to take place.
Thanking you in advance,
W. T. Holmes