Community Tip - Have a PTC product question you need answered fast? Chances are someone has asked it before. Learn about the community search. X
Updating some old toolkit and getting "CmdMgr action_func '' called for cmd" in the trail file. Trying to remove old parameters and it is not working but gives no error. Any ideas?
Hi Earl -
I checked my Creo 3.0 trail files to see whether I had any messages like yours, and I found plenty.
Updating some old toolkit and getting "CmdMgr action_func '' called for cmd" in the trail file.
My tools were producing these messages each time I clicked one of the program's menu buttons. Clicking on a menu button invokes an event handler that Creo Parametric Toolkit calls an "action function". To bind these functions to the menu button, you must first create "command" (uiCmdCmdId) using ProCmdActionAdd.
Here's how I would address this problem:
I hope this helps.
|+| M a r k |+|
Thanks Mark, I will work on this.