flex 3 navigateToURL

5.8k Views Asked by At

im using the navigateToUrl class to allow users to download some content - this works fine in Firefox however in IE a new blank page is opened with no content along with the download window (which is all i want showing up) any fixes for this ? cheers

1

There are 1 best solutions below

0
On

in navigateToURL keep the second parameter "_self"... example: navigateToURL(url,"_self");

if you want to show your your file in a window then you will have to use iframe.

hope this will solve your problem.