I want to use differenct display servers in procedures.
for example,
##################
proc procA {} {
wm ...
...
}
proc procB {} {
wm ...
...
}
proc changeDisplay {} [
???
}
proc returnDisplay {} {
???
}
-----------
#
procA
# from procB, I wish that procedure B be displayed on other machine X window.
changeDisplay
procB
returnDisplay
exit
#######################3
for example,
##################
proc procA {} {
wm ...
...
}
proc procB {} {
wm ...
...
}
proc changeDisplay {} [
???
}
proc returnDisplay {} {
???
}
-----------
#
procA
# from procB, I wish that procedure B be displayed on other machine X window.
changeDisplay
procB
returnDisplay
exit
#######################3