I am creating a flex application with appl开发者_运维知识库ication height 50 . I want a pop up to be displayed outside the main application in the browser. Is it possible?? Plz reply
AS3 generally uses navigateToURL to make the browser jump to a new page - for instance:
navigateToURL(new URLRequest('http://stackoverflow.com/'), '_blank');
精彩评论