This is what the array is done with:

Code:
aWeek = new Array();
for(i=0;i<7;i++){
    aWeek[i] = new Array();
    for(ii=0;ii<12;ii++){
        aWeek[i][ii] = "";
    }
}
I thought this would be better - or at least similar to what you are advising me to do:

Code:
function addArrays(array, v){
	var arr1:Number = array.length;
	for(i=0;i<arr1;i++){
    var arr2:Number = array[i].length;
    for(ii=0;ii<12;ii++){
        v = v+parseInt(array[i][ii]);
		//trace(v);
    }
}
}
But this does not show anything:

Code:
addArrays(wProtein, vProtein);
trace(vProtein);
It just shows vProtein as 0, so it's not getting updated. ... Why could that be?