Community Tip - When posting, your subject should be specific and summarize your question. Here are some additional tips on asking a great question. 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.