Need help with textfield thingy

Hi there…

I just need help with my textfield issues…Ok I have 2 group of textfields which store in cross_cw1 and down_cw1 array…



//array to store 2 groups of textfield
var cross_cw1:Array = new Array(b1,b2,b3,b4,b5,b6,b7,b8);
var crosslen1:Number = cross_cw1.length;

var down_cw1:Array = new Array(b6,b9,b10,b11,b12,b13,b14);
var downlen1:Number = down_cw1.length;



And I will detecting if user setFocus either on 1st value on both array which is “b1” or “b6” it will highlight all the textfield in respective group array.I do manage to highlight the textfield and change the background color of textfield…but my problem is when by the time I setfocus on next textfield on textfield groups it will eliminated the background colour to white…eg; Ok when I setFocus on b1…it will change the background colour all of the textfields on cross_cw1 array…but when i go to next textfield “b2” it will change the background colour to white back…so how to remain the highlight colour as long as Im not setFocus on others group of textfield…another things is how to make it automatically advance cursor to next textfield after 1st letter being insert…Heres’ the code currently Im using…sorry for the snoobish questions and not so elegant code…


//determines which group 1st being setFocus
var txt1st:Array = new Array(b1,b6);
var len:Number = txt1st.length;


for(var i:Number=0;i<len;i++){
    txt1st*.id = i;
    txt1st*.onSetFocus = highlightGroupTxt;
    txt1st*.onKillFocus = unHighlightGroupTxt;
}


////////////highlight group of textfield

function highlightGroupTxt():Void{
    if(txt1st[this.id] == b1){
        for(var i:Number=0;i<crosslen1;i++){
            cross_cw1*.backgroundColor = 0x89D0FE;
        }
    }else if(txt1st[this.id] == b6){
        for(var j:Number=0;j<downlen1;j++){
            down_cw1[j].backgroundColor = 0x89D0FE;
        }
    }
}


////////////unhighlight group of textfield


function unHighlightGroupTxt():Void{
    if(txt1st[this.id] == b1){
        for(var i:Number=0;i<crosslen1;i++){
            cross_cw1*.backgroundColor = 0xFFFFFF;
        }
    }else if(txt1st[this.id] == b6){
        for(var j:Number=0;j<downlen1;j++){
            down_cw1[j].backgroundColor = 0xFFFFFF;
        }
    }
}





Hope someone can give me some shed of light on this…unless can give me lead…at least Im struggling and trying…guys…thanks in advanced…