Apache – Flex FileReference.download – is it possible to open associated application

apache-flexflashflex3

When using FileReference.download() to retrieve a file from a server, I'd like to give the user the option to open the associated application directly rather than having to save it to disk first.

Is this possible in Flex 3? And, if so, how is it done!

Thanks,
Mark

ps. I've tried doing URLLoader.load(URLRequest) also, but no dice…

Best Answer

navigateToURL(urlReq, "_blank") works in most cases, but do not open Excel, CSV files(MS office apps) in IE 7 and older versions.

Related Topic