Flex :: Adobe Air Upload Progress Without FileReference?

Apr 5, 2010

I'm deploying a small application with Adobe Air. My application will do batch upload from filepath which stored in a text file. For example, in a text file name "list.txt", there is a string "C:myfilesIMG_0001.JPG". Now I want to upload this image file, keep tracking of upload progress :-< I want to use FileReference to get the upload progress, but I don't know how to import from file's path. I also wonder how to use FileReference to upload this file without prompting a dialog for user to select file.

View 1 Replies


Similar Posts:


ActionScript 1/2 :: Filereference Upload - Movie Run Slowly - Adobe Flash

May 15, 2009

(A script in this move is causing Adobe Flash Player -n- to run slowly. If it continues...) But I haven't found a posting where it is resolved. I am trying to provide my client with an upload script. What I have so far works on small files but results in the aforementioned error message on large files.

I saw a message a few days ago that talked about writing an onEnterFrame routine in a dummy movie clip that increments a counter, but there were no details about what that code might look like. I have tried several iterations of that logic to no avail. I know I am not the only one with this problem, and I do need to find a solution. I don't think that the server php settings are the problem.

[Code]...

View 5 Replies

Flex :: Use The FileReference.upload() Function To Upload Files To Sharepoint Or Have To Use The SP Web Services

Feb 5, 2010

Can you use the FileReference.upload() function to upload files to Sharepoint or do I have to use the SP web services? This is without adding your own ASP.NET Web Services, just using the built in SP Web Services.

View 1 Replies

Java :: Upload In Flex Without FileReference?

Apr 6, 2011

Is there anyway of upload a file in flex 3.5 without using fileReference? Or even with fileReference, but without browsing, for example, I'm trying to take a printscreen and send it to my java web server

View 2 Replies

Actionscript 3 :: Upload Images In Flex 4 With Filereference?

Mar 28, 2011

I'm trying to upload images in Flex 4 and haven't got so much success with it yet. My code:

[Code]...

This worked well when I took the Webservice approach and stored the Image (= bytearray) in SqlServer.

View 1 Replies

Flex :: File Upload - 4 FileReference With Firefox

May 11, 2011

I'm trying to perform a file upload using a FileReference from a Flex app running in Firefox 4. However when I attempt to call the upload() method, the Filereference throws an IOError with the following Error #2038: File I/O Error. URL: [URL] If I don't explicitly add a listener for the IOErrorEvent, then I get a Flash player popup stating SecurityError: Error #2000: No active security context.

The request doens't even hit my server (I can verify by placing breakpoints in the Java code and watching the HTTP Requests that go out using HTTPFox), so it seems to me that this is a client side issue (right?). I've done some searching for the problem on google and the suggestions included wrapping the upload() call in a timeout/callLater, and attempting to attach the sessionId to the request (since Firefox creates a new thread for the upload and doesn't attach the proper cookies). Neither of these approaches has worked for me. I don't experience this problem with Internet Explorer, only Firefox.

[Code]...

View 1 Replies

Flash :: Upload Only 2 Files On Domain At Time, FileReference.upload Limitations?

Jan 18, 2012

I am creating flash uploader and want to start 10 uploadings at time.But flash upload only 2 files on domain at time, other references wait for something.In IE with ActiveX Player limitation is about 6 files at time.Is there any ideas how to change this limitation? For uploading I need to use FileReference.upload without creating URLRequest object from file data.

View 1 Replies

Flex :: Multiple Upload Progress Monitoring?

Sep 20, 2009

I have a Flex3 application which has to be capable of uploading multiple files and monitoring each files individual progress using a label NOT a progress bar.

My problem is that a generic progress handler for the uploads has no way (that I know of) of indicating WHICH upload it is that is progressing. I know that a file name is available to check but in the case of this app the file name might be the same for multiple uploads.

My question: With a generic progress handler how does one differentiate between 2 multiple uploads with the same file name?

View 3 Replies

Flex :: Generating Progress Bar For Images Upload

Feb 15, 2010

I am a novice to flex and I am trying to develop an application for uploading multiple image file along with progressbar for each upload. The datagrid holds the name of the file and the progressbar for each file when we select and add a file. When there is progress in file upload, it should be reflected in the progressbar as well. I have used filerefencelist to hold the collection of files and when i try to upload files it generates error "Null object"

My code :
private var initDG : ArrayCollection;
private var _arrUploadFiles:Array = new Array();
private var currentFile:FileReference;
private var currentFileIndex:Number = 0;
private var uploadErrors:Array = new Array();
[Code] .....

View 2 Replies

Flex :: Get The Progress Event More Consistently Through The Upload?

Sep 21, 2010

I am uploading a file to a server using a multipart URLLoader. I am able to upload the file fine. I have tried to listen to the progress event on the URLLoader but it only fires at the very end of the upload. How do I get the progress event more consistently through the upload?

View 1 Replies

Flex :: FileReference And HttpService Browse Image Modify It Then Upload It?

Sep 23, 2009

I am trying to do an image uploader, user can:

- browse local file with button.browse

- select one and save it as a FileReference.

- then we do FileReference.load() then bind the data to our image control.

- after we make a rotation on it and change the data of image.

- and to finish we upload it to a server.

To change the data of image i get the matrix of the displayed image and transform it then i re-use the new matrix and bind it to my old image:

private function TurnImage():void
{
//Turn it[code]...........

Now the mater is that i really don't know how to send the data as a file to my server cause its not stored in the FileReference and data inside FileReference is readOnly so we can't change it or create a new, so i can't use .upload();.Then i tried HttpService.send but i can't figure out how you send a file and not a mxml.

View 1 Replies

Flex :: Generate Screenshot And Send It To Server (not Using FileReference.upload)?

Dec 10, 2009

Do you have any ideas? how to generate screenshot and send it to server (not using FileReference.upload)?

View 2 Replies

Flex :: Incorporate FileReference Method Like Upload Into A Cairngorm Architecture?

Jan 14, 2010

how to incorporate FileReference method like Upload into a Cairngorm architecture.Specifically, I would think to fire an event with the File in it, and that's fine. But how would one then be able to listen for e.g. Progress Events?One thing I thought is to have the delegate fire off progress events that are listened for in the View.

View 1 Replies

ActionScript 3.0 :: Using FileReference's Upload To Call A PHP Script From One Folder & Upload Elsewhere?

Sep 9, 2009

Okay, so I am calling my scripts from the folder "php/" Thus, my FileReference calls "php/upload.php" to upload. However, my uploads are in "uploads/" and not in "php/uploads". When the PHP script is called, it apparently ignores the caller (the SWF file) and looks for uploads in its own directory (the "php/" folder). It may be a PHP question, but how do I reference the uploads folder as being in the parent directory of the php files in my PHP script?

View 1 Replies

Flex :: File Upload - FileReference Doesn't Work With NTLM Authentication?

Jul 15, 2011

We use the FileReference component to upload file in Flex. But if the application is deployed within an environment having NTLM authentication (Windows Integrated Authentication), the upload capability will not work, and each time a message box will be popup asking the user to input credentials.I've queried some resource from internet and it seems this is a bug of FileReference component.

View 1 Replies

Actionscript 3 :: Flex URLLoader Upload - Determinate Progress Bar?

Oct 17, 2011

My application asks the user to select files for upload using a FileReference /FileReferenceList. The client then compresses the File data and uses URLLoader to upload the contents of the file.One problem with the URLLoader is that the progress event does not get triggered for uploads. How do I track the upload progress? I am unable to create a FileReference for the newly compressed ZIP ByteArray.

View 1 Replies

Flex :: Retrieve The ByteArray From A FileReference Class Using Adobe Flash Player 9?

Feb 5, 2010

I am trying to retrieve the ByteArray from a file selected using the FileReference class so that I can pass this to a Web Service call that I am making to Sharepoint.Is there any way I can do this using Flash Player 9 without having to upload to a remote server first and then downloading the file to extract the ByteArray?

This is assuming you can't use Adobe Flash Player 10 and the data property from the FileReference class.

View 1 Replies

Flex :: File Upload With Adobe Air?

Mar 7, 2012

I'm trying to upload a file with Flex to Minus.com

The API Reference explain the upload with this example:

POST /api/v2/folders/0FQHJakL/files?bearer_token=[token] HTTP/1.1 Host: minus.com Content-Type: multipart/form-data;
boundary=----WebKitFormBoundaryxECY8varBqIXZW4f Accept-Charset:
UTF-8,*;q=0.5

[Code]....

View 1 Replies

Flex :: Upload - Adobe Flex Mobile Selecting Image From Camera Roll Or Taking Picture Restarts The Application

Jan 19, 2012

I have a flex mobile application that I am working on that I am having issues with selecting an image from roll/taking a picture. My application is not tabbed, however one part of it contains a Tabbed View Navigator with tabs across the bottom. Within one of those tabs, I have the ability to upload an image to a webservice that I have created. However, when I select an image or take the picture, it pops back out to the initial splash screen and the application restarts. If I use the component standalone (outside of the tabbed view navigator) it selects the image and uploads without any problem.

[Code]...

View 1 Replies

Flex :: File Size Limit For Upload In Adobe Air?

Jun 22, 2010

I am building an Adobe AIR app and integrated an FTP client for file transfers. But I found out that maximum file upload size is 100 MB. I need to transfer bigger files

View 1 Replies

ActionScript 2.0 :: FileReference Progress Go To 100% Immediately In Windows 7

Oct 2, 2009

anyone knows why progress in fileReference go to 100 percent immediately after I select the file to upload.

View 0 Replies

ActionScript 3.0 :: FileReference Upload Failure

Jul 15, 2009

I got a FileRefrence instance for a simple upload and it did work for some time in the past, but now I just can't discover what made it stop woking. Can anyone help me find it out? To simplify, I took only the necessary code (not working as the full version). Here are some details:

1. I'm using Flash Player 9 (this can't change because it is a part of a bigger project). My current host machine is a Windows Vista one. The sandbox is set to network access.

2. The FileReference calls a simple php script hosted at an Apache server (Linux). The script permissions are set to 644 (it works for file uploads coming from plain html pages) and I set the folder permission to 777 just to avoid any other source of errors. Here is the simple code for the php script:

<?php// receiving variables$uid = trim($_POST['uid']); // just to check for a post variable that  I must send while uploading (won't work even if I revome it) 
// a file to check if the script is really called
$myfile = fopen("upload.txt", "wb");fputs($myfile, "file upload for uid $uid
");

[code]....

Just for checking I add a Loader instance and used its "load" method with the same "urlSend" variable. It worked and the php script generated the output file...

View 1 Replies

ActionScript 2.0 :: FileReference Freezing On Upload?

Sep 24, 2007

I'm having an issue with a file uploader i'm working on. Certain files, it seems files over 7mb will not upload, nor give an error, it just silently freezes when it starts.

This is on a MediaTemple [dv] with the php.ini modified so that max_file_upload = 100M, same issue.

Here some ActionScript for yashortned a lil)

Code:
var listener:Object = new Object();
listener.onSelect = function(selectedFile:FileReference):Void {
browse_mc.filename_txt.text = selectedFile.name;

[Code]....

View 1 Replies

ActionScript 2.0 :: FileReference Upload IOError

Dec 6, 2007

I need to let people upload a .pdf document there are other places on my site that allow people to upload .jpg which are usualy a fairly small file size.Well I need them to be able to upload a .pdf which is considerably larger.The problem is that every time I atempt an upload, it gets to about 65000 bytes and then results in an IOError.

View 1 Replies

ActionScript 3.0 :: Upload Twice Time The Same FileReference Object?

Oct 11, 2011

there is a way to call two times filereference.upload on the same filereference object ?It's seem something is not call the second time..I need to re upload an images when this one is truncated after upload on web server.

here my code :
public function uploadImages():void
{/** @function uploadImages()

[code]........

View 11 Replies

Php :: Flash FileReference.upload() Doesn't Call Url

Oct 11, 2011

After moving a web site to another server flash upload stopped working. After some debuging and isolating the problem I found out that in SWF file (used for multiple upload) FileReference.upload() method doesn't work. URL called by item.upload(_root.uploadScript) isn't called.

Here is the code:

flash:

listener.onSelect = function(fileRefList:FileReferenceList){
var list:Array = fileRefList.fileList;
var item:FileReference;
_root.toUploadCount = list.length;

[Code].....

View 1 Replies

ActionScript 3.0 :: FileReference Upload With Random Number?

Jan 31, 2009

how would I upload a file using file reference, but having the file save on the server with a random number.

This is to avoid 2 people uploading to the server with the same name.

View 4 Replies

ActionScript 3.0 :: FileReference Upload() Returns False?

Aug 30, 2009

I am currently making a program to upload certain files onto a web server and I have come accross a problem.In my code I've got:

ActionScript Code:
if(fileRef.upload(new URLRequest("http://www.mackaygymnastics.org.au/administrator/upload.php"))) {

[code]...

Now I understand that this is returned because the upload function returned a false, but why is it returning this false. Is this because the URLRequest is wrong or the uplaod file is wrong or something else? I've tried looking all over the web for another case and it doesn't give me one.

View 5 Replies

ActionScript 3.0 :: Filereference Upload, No Popup In Browser?

Nov 17, 2009

I needed a file upload feature. I pretty much just copy pasted the code from the flash help and when rendering, flash would show the file browser window when rendered in flash.However, when displaying the swf in the browser, either on my local laptop server or FTP-ed up on my server, the popup would not pop(up).why does it run when publish/test it in flash?

Code:
import proxy.FileReferenceProxy;
import flash.display.Loader;
import flash.net.URLRequest;[code]........

View 5 Replies

ActionScript 3.0 :: Using Flash FileReference & PHP To Upload A File?

Sep 14, 2010

I've been trying to build a simple flash uploader to upload files onto a server using the FileReference-class and simple PHP. Trying this on a localhost-server succeeded within two minutes, great!

However, now I am trying to do the same thing on the remote-server, but it keeps giving IO-errors. I have done the following: Put all permissions to 777, in the main folder and also the folder where the pictures are uploaded to Tried different remote servers

View 7 Replies







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