tags:

views:

40

answers:

1

hi friends I am creating a flex application with application height 50 . I want a pop up to be displayed outside the main application in the browser. Is it possible?? Plz reply

A: 

AS3 generally uses navigateToURL to make the browser jump to a new page - for instance:

navigateToURL(new URLRequest('http://stackoverflow.com/'), '_blank');
matt lohkamp
@matt_lohkamp I dont want to open a new url in another window but i want to open a Titlewindow outside the Application bounds in Flex 3
Prashant Dubey