The function is not being called. what should I do to get this to work?
protected function truckingMenu_clickHandler(event:MouseEvent):void
{
var connection_request:URLRequest;
connection_request = new URLRequest("file:///D:/Trucking.html");
connection_request.method = URLRequestMethod.POST; // setting method
type
navigateToURL(connection_request); // this is standard function.
}
<mx:TabNavigator width="96%" height="90%" borderVisible="false"
horizontalAlign="center" fontSize="12">
<s:NavigatorContent id="truckingMenu" label="Trucking"
click="truckingMenu_clickHandler(event)" >
</s:NavigatorContent>
--
View this message in context:
http://apache-flex-users.2333346.n4.nabble.com/Open-a-new-Browser-tab-from-Tab-navigator-Content-tp9046.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.