Avatar

Not applicable


A line in your gotServerData() function tried to access a
property from that

was undefined. You should look through the lines of code in
this function

and start testing to see what may be == undefined before
accessing any properties.



private var someObject:*;



private function gotServerData()

{

var foo:Object = someObject.someValue; // If someObject is
undefined,

accessing someValue will cause the error your seeing

}