Hello I am trying to create Tabs in SuperTabNavigator (available in flexlib). SuperTabNavigator is an extension to the mx:TabNavigator. In mx:TabNavigator, it is possible to create tabs from s:ModuleLoader like that:
<mx:TabNavigator id="mainTabNavigator" >
<s:ModuleLoader label="Search"
url="modules/Search.swf">
</s:ModuleLoader>
</mx:TabNavigator>
However, if I try the same thing with SuperTabNavigator like this:
<ns:SuperTabNavigator >
<s:ModuleLoader label="Search"
url="modules/Search.swf"
</s:ModuleLoader>
</ns:SuperTabNavigator>
I get this error:
TypeError: Error #1009: Cannot access a property or method of a null object reference.
at flexlib.containers::SuperTabNavigator/reorderTabList()[/Users/groumly/Development/workspace-3.5-flex4/FlexLib/src/flexlib/containers/SuperTabNavigator.as:1181]
at Function/http://adobe.com/AS3/2006/builtin::apply()
at mx.core::UIComponent/callLaterDispatcher2()[E:\dev\4.5.1\frameworks\projects\framework\src\mx\core\UIComponent.as:12208]
at mx.core::UIComponent/callLaterDispatcher()[E:\dev\4.5.1\frameworks\projects\framework\src\mx\core\UIComponent.as:12146]
Google research has hinted that there ModuleLoader may not extend Container. In order to fix this, I need to re-compile the flexlib library with the patch attached on this link: (http://code.google.com/p/flexlib/issues/detail?id=301). I have tried to recompile the library, but without luck.
How can I load a module as Tabs in a SuperTabNavigator?
Thank you.