May 31, 2003 #1 cdsnuts Technical User Joined May 31, 2003 Messages 4 Location US How do i make a file be downloadable in flash? Example like you have a button and when you click on it you can start downloading a file like a program ect....
How do i make a file be downloadable in flash? Example like you have a button and when you click on it you can start downloading a file like a program ect....
May 31, 2003 #2 Pete222 Programmer Joined Dec 29, 2002 Messages 85 Location GB With Flash MX its on (release) { getURL("http://www.eatpie.com/setup.exe", "_self", "POST" } This may work in FLash 5 - I haven't tested it. Pete. My site: clix.to/F Upvote 0 Downvote
With Flash MX its on (release) { getURL("http://www.eatpie.com/setup.exe", "_self", "POST" } This may work in FLash 5 - I haven't tested it. Pete. My site: clix.to/F
May 31, 2003 #3 firegambler Technical User Joined Sep 25, 2002 Messages 455 Location AT just use the getURL action on the button. put this on the button Code: on(release){ getURL("[URL unfurl="true"]http://www.yourdomain.com/yourfolder/yourfile.zip","_blank");[/URL] } zipping the files that shall be downloaded is the best method not to make the executed by the browser (as the browser could do for pdfs, docs,...) regards Upvote 0 Downvote
just use the getURL action on the button. put this on the button Code: on(release){ getURL("[URL unfurl="true"]http://www.yourdomain.com/yourfolder/yourfile.zip","_blank");[/URL] } zipping the files that shall be downloaded is the best method not to make the executed by the browser (as the browser could do for pdfs, docs,...) regards