Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Calling a Function Within a Function

Status
Not open for further replies.
1. Delete all "Var:"s from input TextFields.
2. Name input TextFields as "var1", "var2", "var3", and "var4".
Code:
Init.onRelease = function() {
   Output_Key();
};

function Output_Key() {
   for (m=1; m<=4; m++) {
      this["OUT"+m].text = this["var"+m].text;
   }
}

Kenneth Kawamoto
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top