I have been working with javascript lately and I am using Chrome (12) Developer tools and I have been getting the error:
TypeError: Cannot call method 'getSize' of undefined.
I have no idea of why this is happening but have isolated the part which seems to be the problem:
x = 0;
for(var i=0; i<w; i++){
for(var j=0; j<h; j++) {
display.blit(tile[world[x]], [(i * 34), (j * 34)])
x++;
}
}
the x++; give me the error and when I comment out the code (of x++;) chrome says there are no errors. Display.blit(tile[world[x]], [(i * 34), (j*34)] doesn't seem to have anything to do with the error although I may be wrong.
My question is how to fix this error and why it is happening in the first place.
var x;may be it is a global variable used somewhere in another script – venimus Jun 14 '11 at 11:20blitmethod contents, and preferablytileandworldarrays andwandhvalues. – mVChr Jun 14 '11 at 12:01