0

好的,我正在使用 TabNavigator。我现在在每个选项卡中填充标签。我可以毫无问题地填充 ard.text 。但是我的所有其他标签都显示为 null,并且出现 1009 错误“无法访问 null 对象引用的属性或方法”。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>
4

1 回答 1

1

没关系,我想通了。只需将 creationPolicy 设置为 all

于 2012-09-05T17:01:58.943 回答