FYI, even the childindexchange doesnt work as well. Guess I cant do what I
was wanting to do. At least not with the TabNavigator. Oh, and I did use
a break point in debug to validate this.
protected function
tabnavigator1_childIndexChangeHandler(event:IndexChangedEvent):void
{
if (event.newIndex == 4)
{
var connection_request:URLRequest;
connection_request = new
URLRequest("file:///D:/TruckingFlex/Trucking/bin-debug/Trucking.html");
//
connection_request.data = new URLVariables("param1=" +
"Prashant"); // to pass any parameter to URL
connection_request.method =
URLRequestMethod.POST; // setting method
type
navigateToURL(connection_request); // this is
standard function.
Alert.show("This fired");
}
}
--
View this message in context:
http://apache-flex-users.2333346.n4.nabble.com/Open-a-new-Browser-tab-from-Tab-navigator-Content-tp9046p9085.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.