I understand that you are trying to open the URL in the system browser by default. Try it.
var urlRequest:URLRequest = new URLRequest("http://www.adobe.com/");
navigateToURL(urlRequest,_blank);
navigateToURL(urlRequest,_top);
If you want to open the URL in the Flex application, you can check here
source
share