When I call my external routine "BrkTest" using efsExternal, the external routine cannot drawLineRelative. The external routine also does not print to the Formula Output using: debugPrintln("test") Why??
The external BrkTest routine is:
function main() {
drawLineRelative(-100,22,0,22,PS _Solid,5,Color.red,401);
debugPrintln("test");
return
}
I am trying to display it on a chart of EMC so the value 22 is within the chart range.
The external BrkTest routine is:
function main() {
drawLineRelative(-100,22,0,22,PS _Solid,5,Color.red,401);
debugPrintln("test");
return
}
I am trying to display it on a chart of EMC so the value 22 is within the chart range.
Comment