I have been working with eSignal studies over the weekend and am getting my programming chops back.
Unfortunately, sometimes when searching, you don't know what something is called. So please bear with me if the answer to my question can be found. I just couldn't find it!
What I want to do is have the ability to change the inputs at anytime rather than remove/reload the study.
Can this be done?
If so, how?
THANKING YOU IN ADVANCE.
Code section I am refering to:
Unfortunately, sometimes when searching, you don't know what something is called. So please bear with me if the answer to my question can be found. I just couldn't find it!
What I want to do is have the ability to change the inputs at anytime rather than remove/reload the study.
Can this be done?
If so, how?
THANKING YOU IN ADVANCE.
Code section I am refering to:
PHP Code:
askForInput();
var xInterval = new FunctionParameter("xInterval", FunctionParameter.NUMBER);
xInterval.setDefault( 60 );
var xLength1 = new FunctionParameter("xLength1", FunctionParameter.NUMBER);
xLength1.setDefault( 05 );
var iColorTop = new FunctionParameter("iColorTop", FunctionParameter.COLOR);
iColorTop.setDefault( Color.green );
var iColorBottom = new FunctionParameter("iColorBottom", FunctionParameter.COLOR);
iColorBottom.setDefault( Color.red );
function main( xInterval , xLength1, iColorTop , iColorBottom ) {
Comment