Questions tagged [downloadify]

Downloadify is a tiny JavaScript + Flash library that allows you to generate files on the fly, in the browser, without server interaction

Downloadify is a tiny JavaScript + Flash library that allows developer to generate files on the fly, in the browser, without server interaction.

Web applications that generates vCards, color palettes, custom code, etc would benefit from using this library. In addition to increasing speed (no round trip to the server) this solution can reduce the database and server load of existing web applications. This is not a library to ‘force download’ a file from a server. It does not interact with a server at all.

13 questions
6
votes
1 answer

When Javascript callbacks can't be used

I know that you're not supposed to do blocking in Javascript and I've never been unable to refactor away from having to do that. But I've come across something that I don't know how to handle with callbacks. I'm trying to use Downloadify with…
monitorjbl
  • 4,280
  • 3
  • 36
  • 45
2
votes
1 answer

Download images on client to zip

Okey, so what I want to do is download multiple images stored in an JavaScript array in AngularJS. I have not found any way of doing this in the form of "pure" images like .png .jpg etc (although if anyone knows how to do this please let me know).…
BAYELK
  • 73
  • 1
  • 10
1
vote
1 answer

Downlodify is not working, no error message at all

I have the latest shock wave (11.9.900.117) add-on installed to my Firefox (24). When i download and run the sample test.html file nothing is happening.But when i run the same demo linked (http://pixelgraphics.us/downloadify/test.html) HTML from Git…
Sankarganesh Eswaran
  • 10,076
  • 3
  • 23
  • 24
1
vote
1 answer

jsPDF using downloadify including an image not working

Here's the code: Downloadify.create('downloadify',{ filename: 'Example.pdf', data: function(){ var doc = new jsPDF(); doc.setFontSize(40); doc.text(35, 25, "Octonyan loves jsPDF"); doc.addImage(imgData,…
user899641
  • 341
  • 1
  • 4
  • 20
0
votes
1 answer

How to enable downloadify in jsPdf?

Hey I have added jsPdf into my HTML to download the HTML as a PDF, but in IE 9 it doesn't works. It is not downloading any PDF so I searched about this and got the I have to enable the IE shim for this so can you help me out that how I can be able…
Dheer Jangra
  • 63
  • 1
  • 2
  • 10
0
votes
1 answer

Downloadify with Angular

I'm using Downloadify lib to download a text file on the client side in my Angular app This is my function: function loadFileSaver() { Downloadify.create('downloadify',{ filename: function(){ return…
Saurabh Verma
  • 6,328
  • 12
  • 52
  • 84
0
votes
1 answer

AngularJS Downloadify bind data

I am try to download a word document which I receive as a base64 string from my web services. On my html page, I ask the user to enter some data to populate the word and when the user click on a button I would like to download the word…
Weedoze
  • 13,683
  • 1
  • 33
  • 63
0
votes
0 answers

Bower install from URL gives blank folder

I'm using bower (v. 1.3.5) to pull in my Front-End JS dependencies, and I want to depend on this: https://github.com/dcneiner/Downloadify It doesn't have its own bower.json so I'm referencing by URL in MY bower.json: "dependencies": { "jspdf":…
Brondahl
  • 7,402
  • 5
  • 45
  • 74
0
votes
1 answer

Fire several flash buttons on a single click

I'm using Zero Clipboard and Downloadify to put certain data into clipboard and call Save As dialog. I want to avoid having to click two buttons, but Flash does not allow taking action with simulated click() from Javascript, only real mouseclicks.…
Seedmanc
  • 357
  • 1
  • 3
  • 13
0
votes
2 answers

Can Cordova 'FileWriter' create/download a PDF document?

I've written a web application to create and download a pdf document on client-side using jsPDF and Downloadify. jsPDF prepares the document and Downloadify downloads it as a pdf. Everything works fine. I'm trying to replicate this behavior on a…
Sushan Ghimire
  • 7,307
  • 16
  • 38
  • 65
0
votes
1 answer

Using downloadify to download binary files

HTML5 has a convenient download attribute that allows the downloading of a file named foo.exe to be saved as a different name like bar.exe: Download It However, support is limited to…
Bullines
  • 5,626
  • 6
  • 53
  • 93
0
votes
1 answer

Unable to see the "save to disk" button

I am trying to include downloadify javascript+flash plugin on my web page but somehow the "Save to disk" button is not visible. Working demo :http://pixelgraphics.us/downloadify/test.html my page:…
-1
votes
1 answer

Invoke File save as prompt while Downloading in ExtJS

I want to invoke the file save as prompt while allowing the user to download a file in ExtJS from a URL. Basically the idea is to allow the user to change the file name and select his desired location before saving the file on their machine. Is…