How to get bottom left prompt window information?
Hi Altair,
I want to get bottom left prompt window remind information after I execute some scripts.
For example, I have a script like this:
*createmark comps 1 21200004
*normalsadjust2 comps 1 0 21337659 5 0
310 elements have been adjusted, but I don't know how to get this remind information from hypermesh, I need get this information in background.
Answers
-
I don't think there is a way to do this currently. Eventually I think all these messages are going to the message log but they are not all there yet. Depending on the specific case there may be other ways to do this. In the example you gave I unfortunately could not find a good solution but I will list below some things that might help in other cases.
https://2022.help.altair.com/2022.1/hwdesktop/hwd/topics/reference/hm/hm_entityrecorder.htm
https://2022.help.altair.com/2022.1/hwdesktop/hwd/topics/reference/hm/_createmarklast.htm
Also just putting a negative in the createmark command will get you the latest created entity up to 100 entities.
hm_createmark elems 1 "-1 -2 -3 -4 -5"
Will give you the last 5 elements created.
0