How can i set *createmarkpanel command to gui?
Hi all,
I created an GUI in hypermesh. However i can not activate command from TCL gui.
Here is a simple code
::hwtk::button $f.b1 -text 'Text Button' -help 'Text only' -command {createentity comps name=component3}
If anyone knows how to do that, could you please show me?
Regards
Sort by:
1 - 4 of
41

New Altair Community Member
Updated by llyle_20499
Hi,
You have to pack after creating.
::hwtk::button $f.b1 -text 'Text Button' -help 'Text only' -command {*createentity comps name=component3}
pack $f.b1
Try to put your commands in a proc & call this proc via -command ?
Remember : the valid command is '*create.....' not 'create....'