Hi,
Ive created a form and it contains 12 input boxes (myMP1_txt, myMP2_txt etc…) and at the mo I’m using a short function for each input box to clear text when a user clicks in side the box (
_root.myMP1_txt.onSetFocus = function() {
myMP1_txt.text = “”;
}
Can any one show me how to write some code so that i have only 1 function that can control the setFocus for all 12 boxes instead of 12 functions; 1 for each box?
Thanks in advance