How to know if the opened window is a classic Hypermesh/Hyperview or the X version?
Akash Purushothaman
Altair Community Member
Using TCL API is it possible to know if the currently open window of Hypermesh/HyperView is of the classic version or the new X version?
0
Best Answer
-
hello @Akash Purushothaman ,
You can use the following commands:
if {[hwtk::common::isunity] == 1} {
# you are using the new user inteface
} else {
# you are using the classic interface
}Best Regards,
Michael
3
Answers
-
hello @Akash Purushothaman ,
You can use the following commands:
if {[hwtk::common::isunity] == 1} {
# you are using the new user inteface
} else {
# you are using the classic interface
}Best Regards,
Michael
3