# How is this done?

**URL:** https://forum.kirupa.com/t/how-is-this-done/288813
**Category:** Uncategorized
**Created:** [May 21, 2009, 9:30am UTC](https://forum.kirupa.com/t/how-is-this-done/288813 "2009-05-21T09:30:59Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![elgringoson](https://avatars.discourse-cdn.com/v4/letter/e/e47c2d/32.png) [@elgringoson](https://forum.kirupa.com/u/elgringoson)
#### Post date: [May 21, 2009, 9:30am UTC](https://forum.kirupa.com/t/how-is-this-done/288813/1 "2009-05-21T09:30:59Z")

</div>

Click the ‘download picture’ button on the lower left aligned movie.

> **[Disney UK | The Official Home For All Things Disney](http://disney.co.uk)**
>
> Discover all you need to know about Disney movies, live shows, holidays, parks and the latest magical gifts and toys in the Disney Store.

How do they bring up a save as box for the jpeg? I have searched high and low for a solution on how to make flash save a jpeg to your computer that is stored on a server. I can make it work with a zip file but when I try the jpeg I end up linking to another page.

This is the code I currently use to retrieve a zip file if anyone wants it.

```auto
function onMouse1Click(evt:MouseEvent){
    var request:URLRequest = new URLRequest("images/SPR.zip");
    navigateToURL(request);
}
kubek_btn.addEventListener(MouseEvent.CLICK, onMouse1Click);

```
