わかりました。TabNavigatorを使用しています。今のところ、各タブにラベルを入力しています。ard.textに問題なく入力できます。しかし、他のすべてのラベルはnullとして検出され、「nullオブジェクト参照のプロパティまたはメソッドにアクセスできません」という1009エラーが発生します。TabNavigatorで何ができるかについて私が見逃しているものはありますか?参考までに、私はFlexを初めて使用します。エラーが発生する理由がわかりません。どんな助けでも素晴らしいでしょう。
<mx:TabNavigator id="tabNavigator" width="100%" height="125" visible="false" includeInLayout="false" creationPolicy="auto">
<mx:VBox id="generalInformation" label="Gen. Info." width="100%" horizontalAlign="center">
<mx:Label id="ard" text=""> </mx:Label>
<mx:Label id="bufferDist" text=""/>
<mx:HBox paddingBottom="5" >
<mx:Button id="googleButton" label="Google Directions" click="newWin('http://www.maps.google.com/?q=' + addressResult)"/>
<mx:Button id="mapquestButton" label="MapQuest Directions" click="newWin('https://www.mapquest.com/?q=' + addressResult)"/>
</mx:HBox>
</mx:VBox>
<mx:VBox id="schoolDistrict" label="School District" width="100%">
<mx:Label id="schoolDistrictLabel" text=""> </mx:Label>
</mx:VBox>
<mx:VBox id="paHouse" label="PA House" width="100%">
<mx:Label id="paHouseLabel" text=""> </mx:Label>
</mx:VBox>
<mx:VBox id="paSenate" label="PA Senate" width="100%">
<mx:Label id="paSenateLabel" text=""> </mx:Label>
</mx:VBox>
<mx:VBox id="usHouse" label="US House" width="100%">
<mx:Label id="usHouseLabel" text=""> </mx:Label>
</mx:VBox>
</mx:TabNavigator>