TabNavigator で常にエラーが発生するという問題が発生しています。
TypeError: Error #1009: Cannot access a property or method of a null object reference.
at mx.containers::TabNavigator/keyDownHandler()[/Users/justinmclean/Documents/ApacheFlex4.11.0/frameworks/projects/mx/src/mx/containers/TabNavigator.as:903]
コード例:
<?xml version="1.0" encoding="utf-8"?>
<s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx" applicationComplete="init(event)">
<fx:Script>
<![CDATA[
import mx.events.FlexEvent;
protected function init(event:FlexEvent):void
{
stage.addEventListener(KeyboardEvent.KEY_DOWN, handleKeyDown);
}
public function handleKeyDown(event:KeyboardEvent):void
{
if(event.keyCode == Keyboard.F1){
if(currentState=="State1"){
currentState = "setting";
}else{
currentState = "State1";
}
}
}
]]>
</fx:Script>
<fx:Declarations>
<!-- Place non-visual elements (e.g., services, value objects) here -->
</fx:Declarations>
<s:states>
<s:State name="State1"/>
<s:State name="setting"/>
</s:states>
<s:BorderContainer left="0" right="0" top="0" bottom="0" includeIn="setting">
<mx:TabNavigator id="TabNavigator" left="10" right="10" top="110" bottom="10" creationPolicy="all">
<!-- General Tab -->
<s:NavigatorContent id="generaltab" width="100%" height="100%" label="General">
<s:Group id="generalcontainer">
</s:Group>
</s:NavigatorContent>
<!-- Screen Tab -->
<s:NavigatorContent id="screentab" width="100%" height="100%" label="Screen">
<s:Group id="screencontainer" width="100%" height="100%">
</s:Group>
</s:NavigatorContent>
<!-- Playlist Tab -->
<s:NavigatorContent id="playlisttab" width="100%" height="100%" label="Playlist">
<s:Group id="playlistcontainer">
</s:Group>
</s:NavigatorContent>
</mx:TabNavigator>
</s:BorderContainer>
</s:WindowedApplication>
F1を押すと設定ページに飛びます。タブナビゲーターが表示されます。もう一度 F1 を押して非表示にします。
基本的に、タブナビゲーターの表示と非表示を繰り返しても問題ありません。しかし、タブナビゲーターを非表示にする前に任意のタブをクリックした場合、キーボードで F1 を押してタブナビゲーターを再度表示しようとすると、上記のようにエラーが発生します。
エラーの発生をどのように解決/防止できますか?
ありがとうございました。