Does anyone know the difference between reloadEFS() and reloading your EFS by using the menu or right clicking with your mouse? Or is there no difference?
Bart
Bart
var bIndex; //global variable
function Premain();{
}
function main() {
//....
if (bIndex != getOldestBarIndex()) {
bIndex = getOldestBarIndex();
//.....dump array by array.pop()
}
}
var bReload = false;
function main() {
if (bReload == false) {
// code
bReload = true;
}
}
//globals
var Array1 = new Array();
var Array2 = new Array();
var Array3 = new Array();
var global1, global2;
function main() {
if (getBarState() == BARSTATE_ALLBARS) {
Del(Array1);
Del(Array2);
Del(Array3);
debugClear();
global1 = false;
global2 = false;
}
// ....
}
function Del(a) {
if (a.length > 0) {
do a.pop(); while (a.length > 0);
}
}
Comment