Announcement

Collapse
No announcement yet.

Calling a function ()

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

  • Calling a function ()

    I would like to call a 2nd function inside a .efs script. I can't seem to get call or callFunction to work. I would like to:

    function premain()
    {
    //stuff
    }

    function main ()
    {

    callFunction xyz //?? I can't get this to work??
    // or call xyz

    }

    function xyz //a second function inside the script
    {

    //other stuff
    }

    ** I've used the call function to call *.efs scripts outside
    the current script many times - that works fine.

    Thanking You in Advance

    Ed Hoopes
    [email protected]

  • #2
    Ed
    AFAIK you should be able to call a separate function within the efs directly (ie without using call()).
    See the attached example where in line 47 there is a call to function(EMA).
    Alex
    Attached Files

    Comment

    Working...
    X