Hello everyone. I am very new to JavaScript programming and EFS. I hope someone can lend me a hand with these newbie questions. Sorry to make you guys bored.
I have been trying to get the previous values for BB study (getValue(-1), (-2) etc...and my purpose is to compare them with current value (0)) but it doesn't seem to work with the code i have written. What is wrong?
Maybe someone can also point me to some helpful EFS programming resources?
Thanks in advance
.......
var ubb85 = null;
var mbb85 = null;
var lbb85 = null;
var test = false;
function main() {
var ubb85_1;
var mbb85_1;
var lbb85_1;
if (test == false) {
ubb85 = upperBB(85, 2)
mbb85 = middleBB(85, 2)
lbb85 = lowerBB(85, 2)
test = true;
}
ubb85_1 = ubb85.getValue(-1)
mbb85_1 = mbb85.getValue(-1)
lbb85_1 = lbb85.getValue(-1)
......
I have been trying to get the previous values for BB study (getValue(-1), (-2) etc...and my purpose is to compare them with current value (0)) but it doesn't seem to work with the code i have written. What is wrong?
Maybe someone can also point me to some helpful EFS programming resources?
Thanks in advance
.......
var ubb85 = null;
var mbb85 = null;
var lbb85 = null;
var test = false;
function main() {
var ubb85_1;
var mbb85_1;
var lbb85_1;
if (test == false) {
ubb85 = upperBB(85, 2)
mbb85 = middleBB(85, 2)
lbb85 = lowerBB(85, 2)
test = true;
}
ubb85_1 = ubb85.getValue(-1)
mbb85_1 = mbb85.getValue(-1)
lbb85_1 = lbb85.getValue(-1)
......
Comment