when I load
function main()
{
debugPrint("db");
return null;
}
in version 11 don't get any output in output window. am I missing something?
also this works in v10.6 but not in v11. hoping I've just missed something?
function main()
{
db("db");
return null;
}
function db(a,b,c,d,e,f,g,h,i)
{
var str = "[" + String("0"+getMonth(0)).slice(-2) + "/" + String("0"+getDay(0)).slice(-2) + " " + String("0"+getHour(0)).slice(-2) + ":" + String("0"+getMinute(0)).slice(-2) + "]";
if (a != null) str += "," + a;
if (b != null) str += "," + b;
if (c != null) str += "," + c;
if (d != null) str += "," + d;
if (e != null) str += "," + e;
if (f != null) str += "," + f;
if (g != null) str += "," + g;
if (h != null) str += "," + h;
if (i != null) str += "," + i;
debugPrintln(str);
return;
}
function main()
{
debugPrint("db");
return null;
}
in version 11 don't get any output in output window. am I missing something?
also this works in v10.6 but not in v11. hoping I've just missed something?
function main()
{
db("db");
return null;
}
function db(a,b,c,d,e,f,g,h,i)
{
var str = "[" + String("0"+getMonth(0)).slice(-2) + "/" + String("0"+getDay(0)).slice(-2) + " " + String("0"+getHour(0)).slice(-2) + ":" + String("0"+getMinute(0)).slice(-2) + "]";
if (a != null) str += "," + a;
if (b != null) str += "," + b;
if (c != null) str += "," + c;
if (d != null) str += "," + d;
if (e != null) str += "," + e;
if (f != null) str += "," + f;
if (g != null) str += "," + g;
if (h != null) str += "," + h;
if (i != null) str += "," + i;
debugPrintln(str);
return;
}
Comment