Hi John, I know it's been a while but the latest build of tyFlow (v1.018) has some MAXScript hooking functions implemented, in order to help track down this issue you're having.
On the problem machine, create the following empty file:
When tyFlow finds that file during startup, it will hook Max's script execution function and dump all scripts that Max tries to execute to this file:
You can also create this file:
When that file is also present, tyFlow will force all executed scripts to run with exceptions turned off.
Hopefully a combination of those hooks can help us to a) track down which script is causing the issue at rendertime, and potentially b) prevent it from throwing an exception.
On the problem machine, create the following empty file:
Code:
c:\hookScripts.tyf
When tyFlow finds that file during startup, it will hook Max's script execution function and dump all scripts that Max tries to execute to this file:
Code:
c:\tyFlowHookedScripts.log
You can also create this file:
Code:
c:\hookScriptsNoExceptions.tyf
When that file is also present, tyFlow will force all executed scripts to run with exceptions turned off.
Hopefully a combination of those hooks can help us to a) track down which script is causing the issue at rendertime, and potentially b) prevent it from throwing an exception.