Hi All
to use context menu and use it to make new tab in browser im use this sample:
private function B(evt:ContextMenuEvent):void {
navigateToURL(new URLRequest("http://www.google.com"),"_blank");
}
and for the function in context menu, im use this sample:
private function A(evt:ContextMenuEvent):void {
app().goToNodePage();
}
how the second sample can add new tab (at browser)
like at first sample?
Thanks for Advice

