Announcement

Collapse
No announcement yet.

Problem using lowest in library file

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

  • Problem using lowest in library file

    I created a library file, and am able to call functions in the library from my efs file without problems.

    Part of the code in the library file is:

    function a()
    {
    var vSeries;

    debugPrintln("Assigning vSeries");
    vSeries = lowest(2, low());
    debugPrintln("done");

    // do some stuff with vSeries.getValue(0)

    }

    The first debugPrintln executes, but the 2nd is never hit. Putting a try/catch block around the vSeries assignment line did not produce any exceptions.

    Can I use low() inside a function library?
    Is there something else I'm missing?

    Thanks in advance for any help.

    Steve M.

  • #2
    Never mind. It works now

    Comment

    Working...
    X