Using a local variable in a button command

This page is part of the Tcl/Tk page of the Airplug documentation.
Back to the Tcl/Tk page / Back to Airplug documentation page.

The following code

button .bt -command { compute $var }

allows to call the compute procedure with the variable var when clicking on the button.

However, if this variable is local and is no more known when the user clicks on the button, there is an error. A solution consists in executing the delayed command in the correct namespace or to define the var variable in the global namespace.

However, if the above line of code is reused with a new value of var, the same computation will be done even if several buttons are defined for different values of $var. A solution consists in replacing $var by its value before the after call:

set cmd "compute $var"
eval { button .bt -command $cmd }

<br>


This page is part of the Tcl/Tk page of the Airplug documentation.
Back to the Tcl/Tk page / Back to Airplug documentation page.

 
Back to top
en/doc/pub/tcltk/tips/buttonlocvar.txt · Last modified: 2017/04/04 18:48 (external edit)
 
 
Driven by DokuWiki