Announcement

Collapse
No announcement yet.

getRuntimeRoot() function

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

  • getRuntimeRoot() function

    The getRuntimeRoot() function returns the same value as the getFormulaOutputRoot() function, which I assume for most users will be c:\Program Files\eSignal\FormulaOutput. I was expecting the getRuntimeRoot() to be c:\Program Files\eSignal. Can anyone confirm this behavior?

    Carl Evans

  • #2
    Hello Carl,

    I have confirmed this behavior and will report it to our development team. Thanks for bringing this to our attention.

    For a temporary work around, you could use the code snippet below. This will parse out the FormulaOutput\ portion of the string to give you the real run time root string.

    PHP Code:
    var Rroot getRuntimeRoot();
    Rroot Rroot.replace("FormulaOutput\\""");
    debugPrintln("Run Time Root: " Rroot); 
    Jason K.
    Project Manager
    eSignal - an Interactive Data company

    EFS KnowledgeBase
    JavaScript for EFS Video Series
    EFS Beginner Tutorial Series
    EFS Glossary
    Custom EFS Development Policy

    New User Orientation

    Comment


    • #3
      Jason,

      Thanks for verifying the result. I appreciate you providing the workaround and I will use it until a permanent fix is available.

      Carl

      Comment

      Working...
      X