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]
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]
Comment