May i know how to pass my selected value from the combobox to A_task through -command? For example, if i selected 3 in the combobox, then i want to pass this value to my A_task proc
ComboBox .combo -values {"0" "1" "2" "3" "4" "5" \
-helptext "Please select your options" \
-command A_task
proc A_Task {value} {
# Do something here
}
Thanks for the help!