Flex :: Download A File In An AIR Application?

Jun 15, 2009

Is it possible download a file in an AIR application, store it on the user's system, and prohibit access to the files by applications other than the one with which it was downloaded?

View 3 Replies


Similar Posts:


ActionScript 2.0 :: Download Button - Opening The File Rather Than Giving A Download This File Option?

Jun 13, 2008

I have a few buttons rigged up for downloading word.doc, mp3 etc

Problem is its opening the file rather than giving a download this file option.

View 6 Replies

Flex :: Gui - Switch Between Different Applications(mxml File With Application As The Root Tag) In A Big Application?

May 16, 2010

I'm new to flex. Now I'm writing an flex application. I plan to split my application into some MXML files(Application as the root tag). How can I switch from one mxml to another?BTW, what is the best practice for design large flex application? Just one MXML Application and many MXML component or many MXML Application?

View 1 Replies

ActionScript 3.0 :: Download A File To The PC Through The Normal Browser Download Manager?

Jul 1, 2010

So I basically have used the fileReference class to allow the user to download a determined file if he wants to.

I use the file.download(URL) function and it works well.

However, the file is downloaded and saved to the hard drive using only the flash player. The browser is not aware of the download, and thus, if I want to show the progress of the download I'd have to make some progress bar myself. I know how to do it, but it would become really tedious and take too much UI space.

Isn't there a damn way in Flash to "send" a determined file to the browser so that it prompts the user to download it? It's an image file, so navigateToURL doesn't cut it since it will just display the image, both if I use a new tab or the current one.

View 1 Replies

Flex :: Download File Synchronously In It?

Nov 17, 2010

In my AIR app, I have a list of file that needs to be downloaded from remote server. I want to make this download happen sunchronously. [code]...

View 1 Replies

Flex :: Download PDF File With HTTPService?

Sep 9, 2011

how to download a pdf file with HTTPService?

I do that

private function downloadPDF():void
{
var httpService:HTTPService = new HTTPService();
httpService.url = "http://coenraets.org/flexandroid90/FlexAndroid90Minutes.pdf";

[Code]....

View 2 Replies

Flex :: Download File And Close New Window / Tab In IE

Oct 29, 2009

I'm getting an anoying problem in IE6.02 when trying to download a file through flex + struts action, the browser opens a new window and doesn't close it after the download has finished.

The flex code is:
navigateToURL(url,"_blank");
The content headers are:
HTTP/1.x 200 OK
Date: Thu, 29 Oct 2009 22:00:44 GMT
Transfer-Encoding: chunked
Content-Type: application-download;
charset=UTF-8
Content-Disposition: attachment;
filename=myfile.pdf
X-Powered-By: Servlet/2.4 JSP/2.0

Also, we tried with
Content-Type: application/pdf; charset=UTF-8
How do I close the new opened window automatically? In FF works perfectly.

View 1 Replies

Actionscript 3 :: Flex 3 File Download Without URLRequest?

Apr 7, 2010

My Flex client app has got some data from the back end (RemoteObjects, BlazeDS, Spring). Client has got all the data it needs, it now needs to put some information in a CSV format and make it available for download.Using Flex 3 for this.

View 2 Replies

Android :: Flex Air Mobile File Download?

Mar 14, 2012

I am building an Adobe Air Mobile application currently targeting Android (and eventually iOS). I'm using Flash Builder 4.6 (which is Flex).I have a requirement to download a zip file from a url, save it to local storage and unzip the contents.There seem to be a few example on how to do a download in Flex/Air, but not many in Flex/Air/Mobile. Additionally, the mix of examples seem to be all over the place with namespace versions, etc. Edit: What I've tried:So, from the examples on the web, the first thing I did was add namespace in Flex declarations: xmlns:net="flash.net.*" Then I added the following component: <net:URLLoader id="urlLoader" /> Then, in the button click event, I called it: urlLoader.load(new URLRequest(downloadUrl)); I get a run time error: Error #2044: Unhandled ioError:. text=Error #2032: Stream Error. URL: http://...

View 1 Replies

Flex :: PDF - Check For Server Error On File Download?

Feb 7, 2011

I'd like to have Flex trigger the browser to download a PDF file from a server, but if anything goes wrong with the script that generates the file I want to be able to throw a meaningful error from Flex. Is it at all possible to try to open the URL in Flex first and check the response's HTTP status or Content-Type, then if it's a PDF file and not an error pass it up to the browser to display the "Save File..." dialog?

View 1 Replies

Actionscript 3 :: Flex Download File From Remote Server?

Feb 14, 2012

i try to load file from remote server and open the file with default application.

private function getRemoteCourr(PathFichier:String, FileName:String):void {
urlStream = new URLStream();
fileData = new ByteArray();
var urlRemoteCourr:String = new urlManager().urlCourriersPat();

[code]...

Instead of a word document with image and text.

View 2 Replies

Actionscript 3 :: Download A File From Server Without User Interaction In Flex 4?

Sep 27, 2011

The code flow is as follows: user clicks 'download details' button on the page -> on button click handler a call to a RPC method is made using s:CallResponder -> RPC method generates and returns a URL from where to download the file -> the success event handler of the CallResponder gets the url where FileRefrence.download() is used to download the file but throws following error:-

Error: Error #2176: Certain actions, such as those that display a pop-up window, may only be invoked upon user interaction, for example by a mouse click or button press.

[Code]...

View 3 Replies

Flex :: Download/Save/Write A File On The Client's Hard Disk Using Flash?

Nov 16, 2010

I wonder how can I download/save/write a file from my server to a client's computer using flash or flex.

Sign up
Sign in
Click on the ("FREE") button placed on the right of the page. (the
orange button)

[code]....

then you'll see a confirmation popup for the download, then you choose where do you want to save the file, and the flash movie saves the file!

View 1 Replies

Include Properties File Or Config File In Flex Application?

May 21, 2011

I have a flex application which contains different feature that includes google maps, twitter, facebook etc.

Currently I have hardcoded api keys in the code it self but I want to use a properties file/config file where I can put such things and use anywhere I want in the application.

Is it possible to achieve this in flex? I am using swiz framework. Is it possible to achieve this using this framework?

View 3 Replies

Flex :: File Write Permission To Application Directory In Windows 7 In Flex?

Aug 11, 2010

I am creating an AIR application using Flex. In it I use a file in application directory to store some data in it.Its working very well to read and write data to this file with various OS except windows 7. In windows 7 it is not working. May be its a permission problem.

How can i write file in the application directory with Windows 7 ?

View 2 Replies

Flex :: Reset/reload A Flex Application Without Refreshing The HTML Page Or Reloading The SWF File?

Jan 12, 2011

I have a flex application that has a home button. I need to reset the application when this button is clicked. I can't use navigateToURL or ExternalInterface.call("window.location.reload"); as its not acceptable to reload the swf file.

View 5 Replies

Flex :: Executing A Local File From An Intranet Flex Application

Apr 12, 2010

I am creating a Flex application for intranet use.I need the application to execute files, with different file types (txt, emails, etc.) at specific known locations on the clients computer.Is it possible to give permissions to the Flex application to execute local files? (I have administrative rights on the clients computer)

View 1 Replies

Xml :: Using A Flex Web Application In Another HTML File?

Mar 30, 2012

i'am developing a flex media player that will be include in a simple html file. my project plane is:

1-loading a xml file (using HTTPService)
2-find the sound address in the xml (Using E4x)
3-load the sound
4- ...

when i run it with adobe flash builder or generate a release version, it works fine. but when i use the flash file in my html file it's xml loading process doesn't work!

after some try , i realized that if the swf file be in the flash builder workspace directory, it work , else it doesn't work.

note that my OS is Microsoft Windows 7 32-bit

what is the different between the workspace directory and usual directories?

View 1 Replies

String :: Flex - Download A String Variable As A File To The Local Machine?

Sep 21, 2011

I have a String variable in my flex (flash builder 4) application containing CSV data. I need to allow the user to download this data to a local file. For example, giving them a "csv" button to click and it might present them with a save file dialog (and I would be sending the contents of my string variable).Is this possible / how ?I am using the ResuableFX component for the datagrid to csv. This the code I ended up with that works to save the string to a text file for the user (in a web browser):

var dg2CSV:DataGrid2CSV = new DataGrid2CSV();
dg2CSV.includeHeader=true;
dg2CSV.target=adgEncounters;

[code]......

View 1 Replies

ActionScript 3.0 :: Pass A Var From Flex Application To A Swf File?

Jun 10, 2009

how to pass a var from flex application to a swf file that is on my server?

[code]....

how to GET the VAR THat is passed into the swf file some get method from FLEX?

View 1 Replies

Flex :: Start Application From A Simple AS File?

Oct 27, 2009

I want to use vkontakte's new wrapper feature, that enhances your application abilities by running under SWF wrapper. This is a sample application that uses this mechanism. It uses pure action script to display it's contents rather than an mx:Application.

Using the wrapper on my mx:Application failed due to the following error:

TypeError: Error #1009: Cannot access a property or method of a null object reference.
at mx.managers::FocusManager/activate()[C:autobuildgalagaframeworksprojectsframeworksrcmxmanagersFocusManager.as:702]
at mx.managers::SystemManager/activateForm()[C:autobuildgalagaframeworksprojectsframeworksrcmxmanagersSystemManager.as:2493]
at mx.managers::SystemManager/activate()

[Code]...

Unfortunately - it also failed, and the question remains, how to start Application from a simple AS file?

View 2 Replies

Flex :: Delete A File In The Application Directory?

Nov 19, 2009

We are writing log files to File.applicationDirectory and want to clean out old log files. The question is how do you delete files out of that directory? When I try and delete old log files out of this directory it gives a security exception. Is there anyway around this? I know you are not supposed to write to File.applicationDirectory, but we are writting are logs there anyways.

View 2 Replies

Flex :: Write A File To Application Directory?

Dec 28, 2009

how to write a file to File.applicationDirectory in flex. i am getting security filewrite resource error.

View 2 Replies

Flex :: Preload A File Before The Application Initializes?

May 5, 2010

Problem: An XML configuration file needs to be loaded at runtime and be ready when the application's createChildren() gets called. At the latest, because configuration values are needed to properly initialize child components. Preferably, I would like the configuration loading be complete before the application even gets created. In short, I want to do this: load configuration, then initialize the application using the loaded configuration.

I created a custom preloader to help solve this. But as it turns out, the application's createChildren() method already gets called during preloading, when the configuration is not yet guaranteed to be loaded. That is, before the custom preloader dispatches the COMPLETE event.

View 2 Replies

Flex :: Copy File To Application Directory?

Oct 26, 2010

I have trouble getting it to copy file from src to destination.

var asMsg_path:String = fileRef.nativePath;
var origFileLoc:File = File.applicationDirectory.resolvePath(asMsg_path);
var newFileLoc:File = File.applicationDirectory.resolvePath("/java/"+asMsg);

[code]....

View 1 Replies

Flex :: Opening And Getting File Contents In 4 - Air Application

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

Flex :: Load A Swf File After Application Creation?

Mar 22, 2011

Is it possible to load a swf file after application creation in flex? If so how?

View 2 Replies

Flex :: Open A Pdf File In A Mobile Application?

Jul 29, 2011

Is it possible to open a pdf file in a Flex Mobile application?I have searched but I didn't find anything.

View 1 Replies

Flex :: How To Attach File Extension With AIR Application

Feb 23, 2012

I made an AIR application that parses some specific files. I am using flex builder 4.5 and SDK 3.6. I want to attach Icons with those files and when I double click those files they should open with my application. How can I do this?

View 2 Replies

In Flex Mxml Application On Including .as File?

Feb 26, 2012

In mxml application made in flex if i place a part of actionscript code in separate file and include it in mail application using (fx:Script source) , then do i have to import all the mx and spark components in .as included file even though they are were already imported in main mxml application ? For example if i have mx alert already imported in main mxml file then will i have to import in again in the .as file placed externally although .as file is included in main mxml application ?

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved