A line one error might mean you did not cut and past the "/" before the *.
look at the code and make sure line 1 has "/*****" etc...
The other error is due to the fact I left out a ","
Old code;
var vJMA1, vJMA2, vJMA3 vJMA4v vJMA5;
New Code
var vJMA1, vJMA2, vJMA3, vJMA4v, vJMA5;
The same problem exists in the other code also;
Old code;
var vJMA1, vJMA2, vJMA3 vJMA4;
New code;
var vJMA1, vJMA2, vJMA3, vJMA4;
Hope this fixes it
look at the code and make sure line 1 has "/*****" etc...
The other error is due to the fact I left out a ","
Old code;
var vJMA1, vJMA2, vJMA3 vJMA4v vJMA5;
New Code
var vJMA1, vJMA2, vJMA3, vJMA4v, vJMA5;
The same problem exists in the other code also;
Old code;
var vJMA1, vJMA2, vJMA3 vJMA4;
New code;
var vJMA1, vJMA2, vJMA3, vJMA4;
Hope this fixes it
Comment