Is there any way to call a function from within a function?
***************************************************
Here is the Function I am calling from:
SET.onRelease = function() {
in1_txt.text = "C";
in2_txt.text = "F";
in3_txt.text = "G";
OUT1.text = "C";
OUT2.text = "F";
OUT3.text = "G";
varKeyShift = 0;
this._parent.varShow = "SET.onRelease";
Output_Key(); // Here is the Function call
};
****************************************
Here is the function I am calling:
function Output_Key() {
this._parent.var1 = 1;
}
*******************************************
I have an Input Text with Variable Name "var1"
but var1 shows no value when clip is run
***************************************************
Here is the Function I am calling from:
SET.onRelease = function() {
in1_txt.text = "C";
in2_txt.text = "F";
in3_txt.text = "G";
OUT1.text = "C";
OUT2.text = "F";
OUT3.text = "G";
varKeyShift = 0;
this._parent.varShow = "SET.onRelease";
Output_Key(); // Here is the Function call
};
****************************************
Here is the function I am calling:
function Output_Key() {
this._parent.var1 = 1;
}
*******************************************
I have an Input Text with Variable Name "var1"
but var1 shows no value when clip is run