Flex - Opening A Base64 PDF In Javascript In IE6
May 3, 2011
In javascript, I have a variable which holds a pdf in base64 (the pdf is generated in flex and passed to js). I want to open it in the browser (ie I want the browser to display the open/save dialog box letting the user open or save the pdf).
I am using Data URI which works fine in some browsers, but is not supported in IE 6/7:
function getPdf(pdf) {
window.open("data:application/pdf;base64," +pdf);
}
How can I get this PDF to open in IE6 and 7? I've read about MHTML as an alternative to data uri but I don't think it can do what I need, or can it? For now I just need to open pdfs but in the future I will probably need to add support for xls (MS Excel) files too. Currently I'm using Flash's Filereference.save to let the user save the pdf to the disk then he can open it, but the client is insisting on giving the user a choice to open it automatically rather than forcing him to save it first.
View 2 Replies
Similar Posts:
Aug 24, 2011
I have an actionscript 2 code that uses base64 to encode/decode incoming data. problem is that data is binary and includes null (0 characters), actionscript 2 fails when handing null to charCodeAt.I figured what I need is an actionscript 2 lib that can do base64 encoding/decoding on an array rather than a String.
View 1 Replies
Aug 4, 2009
In Flex, I have a GUID that I receive as input in the following format "as a string. How would I convert this to a string of Base64 encoded values?
Please note that we have to account for leading zeroes in each section of the GUID, for example, "0091AFBC-8558-482A-9CF6-64F1745E7AC1"
View 1 Replies
Aug 10, 2009
I have recently been using Charles the debugging app. And noticed a very chatty app named skyrocket (a very very cool slide presentation app) sending a lot of data across the wire. It is built in flex by the looks and I was wondering why they had chosen to send their data using base64 and not amf. Is it because they don't want to be locked into the flash platform? Or could there be another reason. Is it to store it as XML in the database as they don't want to be dealing with amf when handing data to other services/clients (iPhone etc).
View 2 Replies
Mar 23, 2011
I'm developing a flex application that displays a list of images along with some metadataThe images are less than 500kb. They are stored in the database as base64 encoded stringsretrieved using PHP, send over to flex as XML (which creates a fairly large XML output file)Now my problem is that, while I can display upto 2-3 images easily, anything more than 3 or sometimes 2 images will cause the images to be corrupt. Sometimes the whole app fails.I am guessing this is due to the large size of the generated XML. I know I am doing something wrong here. I want to know what is the proper method for storing/retrieving a lot of images in a flex application.
View 2 Replies
Mar 28, 2011
I'm trying to create a list with icons. There're a lot of examples but seems all of them are using embedded images.My problem is how can I create the list with icon from base64 png string at runtime?
View 1 Replies
Oct 9, 2009
I've been trying to find the Migration from AS2 to AS3,for the following code:
ActionScript Code:
on (release) {
getURL("javascript:NewWindow=window.open('main.htm l','ssWin','width=990,height=600,left=0,top=0,tool bar=N0,location=No,scrollbars=No,status=No,resizab le=No,fullscreen=No');NewWindow.focus();");
}
the code I've got so far is:
ActionScript Code:
if (mcUrl == i)
{
[code]....
But I'm not sure how to implement JavaScript in it.
View 1 Replies
Jan 9, 2009
I am using Adobe flash CS3 and working with it using ActionScript 3.0.I need code (or) procedure for developing an application in such a way that, When I click on a button present on the stage, I should get execute an HTML file(say,Hello.html) which is present in the local hard-disk in the same folder as with the flash file. I had developed HTML file and flash file. I am attaching the JavaScript code which is getting executed in flash:
var js:URLRequest=new URLRequest();
js.url="javascript:window.open('AddForm.html','popper1','width=540,hei ght=360');newWindow.focus();
void(0);";
button.addEventListener(MouseEvent.CLICK,openPopUp);
[code]....
View 3 Replies
Dec 1, 2009
is it somehow possible to open a HTML popup window from within Flash and have it receive text data from Flash which should be printed ... and this all only in AS3 and Javascript (since no server-side scripting is available)?
View 2 Replies
Jan 15, 2011
I know that there is no implementation of File Save Dialog in JavaScript as of now, but it can be done with Flash. I am looking for a lib or source code in Flash that could do it for me so that I can call it via JavaScript. JavaScript knows the data and filename, I just want to open a file save dialog.
View 1 Replies
Jan 5, 2011
I have a few Flash objects in my html page, and all these Flash objects respond to mouseOver and mouseOut.
On mouseOver, the Flash objects will play a movieclip in place. On MouseEvent.CLICK, I would like the Flash objects to make the html page create a new iFrame with embedded .mov movie file in a lightbox effect.
I can't seem to get it to work. I have tried ExternalInterface.call(), navigatetoURL(), I have tried simulating a click event in javascript. Essentially, I want a mouse-click that is captured in Flash to open a jquery/javascript-lightbox in an iframe.
View 1 Replies
Jul 3, 2011
Out of a drawing I'm generating a PNG and upload it as a Base64 string via PHP to my server. Is it possible to compress the Base64 string in AS3?
[code]...
View 2 Replies
Aug 1, 2009
for some reason, whenever I dynamically load a swf on a $(document).ready() by writing to a div, I am unable to make javascript calls to the browser. Specifically, all calls to the browser return "null". This does not occur when embedding the swf normally on the page load, but I would like to prevent loading of the swf until a specified point in time.
What the heck is going on here? Is there something special about dynamically embedding a swf that prevents the swf from talking to the browser? The methods ARE called (I've proven such by showing alerts), but all return values to any function, regardless of type returned, shows as null when it gets to flash.
View 3 Replies
May 31, 2010
I'm using AS3 to base64 encode a JPG and pass it to Javascript. I'm attempting to use AJAX to pass that base64 encoded string to PHP and have PHP decode it. (I know I could send it back to Flash and Flash could decode it and send it to PHP, but I'm trying to eliminate the need for Flash on the decoding end).It appears that AS3's encodeToBase64String() function and and PHP's base64_decode() function do not use the same algorithm, as PHP evaluates it as a base64 encoded object, but does not seem to output it properly
View 4 Replies
Jul 8, 2011
What would be a best Class for base64 encryption/decryption in Action Script?
View 3 Replies
Mar 21, 2012
I am referring to Send image from flash to Asp.net for sending image captured by a webcam to an asp.net page. However I need to download base64 encoder to proceed. The link the user provided for downloading it seems to be broken. Can anyone tell me how I can download the base64 encoder?
View 2 Replies
Aug 9, 2010
'm trying to convert a movieclip to base64 and send it a server.
I've checked everywhere and I realized I can do it with an external PHP page that will communicate with the flash file and will send the MC as BASE64 JPG using POST.
Unfortunately, my client asked me to do that WITHOUT ANY EXTERNAL FILES (so I can't use the PHP page). Only the final SWF should be used.
I've tried to convert the project from AS2 to AS3, but it seems to be almost impossible.
Is there any way to convert the MC to JPG without the PHP page?
View 5 Replies
Oct 23, 2009
We're currently building a Flex application using the PureMVC framework with a shell.swf which loads/unloads modules dynamically. We're experiencing issues with memory and we're looking to replace the shell.swf with a JavaScript-based loader.Two questions:What would be a good framework to dynamically load the Flex components and allow the modules to communicate between each other?Would dynamically loading/unloading the modules via JavaScript take care of the typical memory problems associated with Flex/Flash applications?
View 1 Replies
Jan 11, 2011
I have a string of of base64-encoded PNG image that is suitable to use as a src (source) attribute in a <img> tag. However I need to transfer this image to Flash applet where I need to create (show) the image fast. Is there a way to simply use the data string and somehow create an image (inside a Flash movie) from it?
View 1 Replies
Aug 15, 2011
I have a issue here with unzipping the .zip files that i have in combobox.i select 1 .zip file and after selecting the particular .zip file Button should unzip it and put the contents in another combobox.
[Code]...
View 2 Replies
Aug 23, 2011
I have converted a jpg image to Base64 string and saved somewhere. Now How can i convert this Base64 encoded string to bitmapData in flash as2?
View 1 Replies
May 3, 2010
So I'm using AlivePDF to generate a 6 page PDF with a range of text and graphics. It's a fairly large PDF, prob 4mb when saved. I need to be able to pass the PDF along with a few other variables to a PHP script that uploads the PDF and then sends an email.
Because I need to pass the PDF data along with other information, I've been using a standard POST request with URLVariables, only I Base64 encode the PDF ByteArray before sending to avoid any sort of corrupt data. This works fine, except the Base64 encode operation takes ~8 seconds, and sometimes longer on a slower machine, causing a timeout.
View 8 Replies
Oct 4, 2010
Is there a way to open a PDF file whixh exists on some server using flex in a web application?
View 1 Replies
Nov 11, 2009
Is it possible to open a custom IE window (i.e no status bar or address bar etc) from within flex? Or if I call a php file or html file can the page customize itself when loaded?
View 2 Replies
Dec 4, 2009
All I need to open a new IE Window from within Flex code on click of a link.P.S I dont want to open a new Browser. I want to open a browser window only that can open a new URL.Something like clicking on a link in Flex and then openin a Pop up window.
View 2 Replies
Nov 30, 2011
We are creating an ios app, In which we want to use certain interactive functionality which is created in flex. Though flex 4.5 does gives an option to create an ipa file and lauch it in app store as a app. But we want only a certain functionality in flex and want to develop other functionality using Objective C only. Is that possible? Can we use a module developed in flex inside an objective C app?
I have searched and found out that we can make .ane packages through flex. These packages use .a file to access the native ios functionality. To know about Adobe Native extensions (ane) click here
To see the sample provided by adobe click here. All I want to know is Can we include this ane in ios app, being developed using objective C using xcode 4? Is there any way I can use a module developed in flex under my cocoa app?
View 1 Replies
Jan 23, 2011
I'm wondering how I can display an Open File dialog box, select a text file, put the contents of the text file into a textarea component via a button... I'm not really used to Flex so I don't know where to start or exactly how I'd go about doing it? I'm doing this for an Air application.
View 1 Replies
Feb 12, 2011
In our flex application we have tabs at the main level and under it we have subview.e.g
Home / Tasks / Admin etc...
In one condition we have to click on a button and open a new tab, on this tab we have to add an existing mxml component and show it in the tab.We are using parsley as the framework. Inside the mxml component test.mxml(that is shown in the tab) i am configuring it with parsley using the tag.Now when i add the instance of this test.mxml i am getting an exception. I am deriving this test.mxml instance using teh parsley context
as
context.getObject(id of component) as DisplayObject and adding it to the tabNavigator...
But i am getting exception when i try to grab an instance of a view using parsley context. How do i get an instance of a view or component that is configure through parsley using the parslye context.Also the problem is occuring becuase of the view injection..because i get a parsley excepiton on startup of the application stating that there is some problem in the context.
View 1 Replies
Jan 11, 2012
I need to import a flex project into FlashDevelop. However I am unable to find the .actionScriptProperties file. How would I be able to import the project?
It would be great if someone could help me out with it.
View 1 Replies
Mar 21, 2011
In my flex application I have several pop ups, when a pop up is opened the application is disabled and enabled back when the pop up is closed.Is there way to get application's enabled / disabled event and perform some activity like hiding a display object.I know, I can get open and close event of the pop up but I don't want to write it for all the pop ups and pay for maintainability.
PS: I am using PopUpManager to create pop ups.
View 1 Replies