/ Published in: TCL
Basic commands for creating a window child to ANSYS (transient).
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
set parent [toplevel .windowName -class Ansys] wm title $parent "This is a title" wm geometry $parent [option get .dlgAnsysGUI geometry {}] wm transient $parent .dlgAnsysGUI wm deiconify $parent wm resizable $parent 0 0