Chaos Corona Forum

Chaos Corona for 3ds Max => [Max] I need help! => Topic started by: Coroluluc on 2014-12-18, 10:56:37

Title: Corona light lister - error script on 3dsmax 2013
Post 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.


Title: Re: Corona light lister - error script on 3dsmax 2013
Post by: racoonart on 2014-12-18, 11:03:17
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:
Quote
<runtime>       
<loadFromRemoteSources enabled="true" />
</runtime>

3. Our full 3dsmax.exe.config file looks like this:
Quote
<?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>
Title: Re: Corona light lister - error script on 3dsmax 2013
Post by: Coroluluc on 2014-12-18, 11:20:14
I used your script, and it works to perfection.

Thanks.