One way to get the "Open/Save" dialog is to have your Flex control link to a server-side URL that sets the Content-Disposition header to something like "attachment; filename=myFile.pdf". You should also set the content type to the appropriate value based on the type of file ding downloaded. How you set those headers depends on what server-side technology you're using - JSP, ASP, PHP, etc. You can probably find some examples in the archives.
HTH, Doug --- In [email protected], "Nate Pearson" <[EMAIL PROTECTED]> wrote: > > I want the user to be able to click on a link and download a file. > When they click on it, I want them to have to option to save the file > or open it right there. > > I can use the file reference class so the users can click on the file > and save it...but they have to navigate to that folder to open it. > Anyone know how to make the open dialog appear? > > Thanks, > > Nate >

