I'm attempting to create a custom toolbar menu that will hold some scripts. All of this will be stored in git, and users will be able to clone their repository anywhere they please.
Therefore, I cannot include any fully-defined paths to .tcl scripts: everything needs to be relative. Is something like this possible?
For example:
*Id("HyperWorks", "20.*") *BeginDefaults() *BeginGraphicDefaults() *BeginMenu(base, Tools) *BeginMenu(results, Post Processing) *MenuItem(results, This Script, TCL, "../my_scripts/this_script.tcl") *EndMenu() *EndMenu() *EndGraphicDefaults() *EndDefaults()