1120: Access of undefined property
问题 Why I'm getting a 1120: Access of undefined property arrMonth. error at the line arrMonth.push and how to correct it? <fx:Script> <![CDATA[ [Bindable] public var arrMonth:Array = new Array(); arrMonth.push({label: "January"}); ]]> </fx:Script> 回答1: The reason for that error is that your logic (the push statement) is not inside a method, hence it is considered to be at class level (i.e. static) instead of at the instance level. Which means there are two ways to fix it : 1/ Make the variable