Chaos Corona Forum
Chaos Corona for 3ds Max => [Max] I need help! => Topic started by: Coroluluc on 2014-12-18, 10:56:37
-
Hello.
Do you know how to fix the error. I am attaching a screenshot.
Does anyone have a solution?
Thanks.
-
See this post here:
Actually that's easily fixable. It's a security thing:
Do the following:
1. Open in Notepad file "3dsmax.exe.config" from 3ds Max root directory.
2. Add the following lines to the 3dsmax.exe.config:
<runtime>
<loadFromRemoteSources enabled="true" />
</runtime>
3. Our full 3dsmax.exe.config file looks like this:
<?xml version="1.0"?>
<configuration>
<startup useLegacyV2RuntimeActivationPolicy="true">
<supportedRuntime version="v4.0"/>
</startup>
<system.diagnostics>
<assert assertuienabled="false"/>
<sources>
<!-- This removes Binding error messages coming from AdWindows components -->
<source name="System.Windows.Data" switchName="SourceSwitch">
<listeners>
<remove name="Default" />
</listeners>
</source>
</sources>
<switches>
<add name="SourceSwitch" value="All" />
</switches>
<trace autoflush="true" indentsize="4"></trace>
</system.diagnostics>
<runtime>
<loadFromRemoteSources enabled="true" />
</runtime>
</configuration>
-
I used your script, and it works to perfection.
Thanks.