Announcement

Collapse
No announcement yet.

<eSignalEncryptedScript> syntax error?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • <eSignalEncryptedScript> syntax error?

    I started using eSignal 7.9 Beta 1 and I'm getting this error in the Formula Output window for the 2 standard efsLibs I'm trying to load (dsFunctions.efsLib and dsUtilities.efsLib, both vers 1.5):


    , line 1: SyntaxError: syntax error:
    <eSignalEncryptedScript>
    ^

    , line 1: SyntaxError: syntax error:
    <eSignalEncryptedScript>
    ^

    I'm getting this for each lib I try to load.

    I can produce this error on the following script that does nothing but load the libraries:


    var util = null;
    var func = null;

    var bInit = false;

    function preMain()
    {
    setPriceStudy(true);
    util = addLibrary("dsUtilities.efsLib");
    func = addLibrary("dsFunctions.efsLib");
    debugClear();
    }


    function main()
    {
    if (bInit == false)
    {
    bInit = true;
    }
    }

    }


    I didn't have this problem with the 7.9 Alpha build using vers 1.5 of the utility and function libraries.


    Thanks,

    Steve

  • #2
    oops.

    Ignore that last right '}' in the script I posted. That's a hand typo and not in the file I'm using.

    Comment


    • #3
      Steve
      That is a known issue with the new encryption method and the checkVersion() statement in the Library.
      The next beta version should correct that
      Alex

      Comment

      Working...
      X