Author Topic: Corona light lister - error script on 3dsmax 2013  (Read 2196 times)

2014-12-18, 10:56:37

Coroluluc

  • Active Users
  • **
  • Posts: 5
    • View Profile
Hello.

Do you know how to fix the error. I am attaching a screenshot.
Does anyone have a solution?

Thanks.



2014-12-18, 11:03:17
Reply #1

racoonart

  • Active Users
  • **
  • Posts: 1446
    • View Profile
    • racoon-artworks
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>
Any sufficiently advanced bug is indistinguishable from a feature.

2014-12-18, 11:20:14
Reply #2

Coroluluc

  • Active Users
  • **
  • Posts: 5
    • View Profile
I used your script, and it works to perfection.

Thanks.