Tagged Questions
The filereference tag has no wiki summary.
7
votes
3answers
3k views
Flex's FileReference.save() can only be called in a user event handler — how can I get around this?
I need to call FileReference.save() after a web service call has completed, but this method has a restriction: "In Flash Player, you can only call this method successfully in response to a user event ...
7
votes
1answer
273 views
FileReference: Loading a Windows-locked file
I'm using Flex in Flash Player 10 on Windows, using FileReference to load a file into memory, as below.
My issue is that when a file is locked by Windows, my FileReference is not giving me any ...
5
votes
4answers
1k views
Flex: DeepCopy of FileReference
in my project, I let users pick pictures using the FileReference class. I then load these pictures into their .data properties, using the load() function. After this I perform some local manipulation ...
4
votes
4answers
6k views
Image Upload progress using URLLoader AS3
I am developing image uploader in Flash. I use FileReference.browse to browse image then resize this image to 1000 x 1000 px, if the image is very big and then upload to server. I want to show ...
2
votes
3answers
58 views
Getting an error in FileReference.save method
I am currently working in Flex 3.0 I am getting an error(screen shot is given below). I am using Flash Player Version 10.0
Currently I am calling the HTTPService and in the resultHandler of that ...
2
votes
1answer
140 views
Need help using NtCreateFile() to open by fileIndex
I have written a program that queries the change journal records and lists them. The change journal returns:
1) filereferencenumber( combination of fileindex.high and fileindex.low)
2) ...
2
votes
2answers
99 views
Is it possible to access raw file data as FileReference.load() loads it in memory?
I think it's not, but maybe I'm wrong. Anyone?
UPDATE:
It's not.
2
votes
5answers
1k views
Alternative to locking file type on FileReference.save() AS3
Update:
As discussed in Jacob's reply below, limiting or correcting the behaviour of FileReference.save isn't possible. Can anyone suggest an alternative (server is Apache/PHP) that matches all of ...
2
votes
1answer
179 views
Flash upload progress
I'm making a bandwidth test in flash, and I want to display a progress bar and the current calculated speed. For the download part this is pretty straightforward, but for the upload part it gets a bit ...
2
votes
1answer
566 views
Flex: Read bytearray
I use the following to upload a file to Flex:
private var filer:FileReference;
protected function button1_clickHandler(event:MouseEvent):void
{
var fd:String = ...
2
votes
1answer
562 views
How to call a FileReference.browse() from JavaScript?
I am trying to call the browse() method of the FileReference class from JavaScript (a user clicks on a text that uses the ExternalInterface to call a method in Flash).
Unfortunately, I receive an ...
2
votes
1answer
844 views
Adobe Air upload progress without FileReference
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 ...
2
votes
4answers
4k views
FileReference.load() not populating FileReference.data
I am trying to use the load method of FileReference object to load the data and use it to display a thumbnail of the selected image.
However, after calling fr.load(), fr.data remains null.
I'm using ...
2
votes
4answers
2k views
How can you save out a String into a file in AS3?
I have a string the user has typed and I want to save it into a file on the users harddrive. Can you do that? And if so, how?
1
vote
2answers
69 views
AS3 Image Loader - It loads itself (the swf)
My LoaderInfo will return the swf itself rather than the image given via the FileReference and Loader. I had problems debugging it, as LoaderInfo.content returns [Object Main] (My document class). ...
1
vote
1answer
131 views
Flex FileReference and ByteArray Compress
I have a FileReference that is being uploaded. But before upload, I call the compress() method on the ByteArray of the FileReference i.e. fileReference.data.compress().
But I observe that the ...
1
vote
2answers
93 views
Eclipse how to reference file in a different src under the same project
My current setup in eclipse is like this:
trunk
--working/src
--resources
I have a java file inside a package under working/src and I am trying to retrieve a file in the resources. The path I am ...
1
vote
1answer
100 views
Flash saves in Windows, not in Linux, FileReference.save()
The code below compiles fine on the Flex 4 SDK on Fedora 15. Mouse-click opens the dialog box, I click okay, and a file is saved, but the file is empty. I run the same SWF file (that was compiled on ...
1
vote
1answer
479 views
Flex 3 + Flash Player 10 FileReference save function [closed]
Possible Duplicate:
help, losing extension when use FileReference download
Hi!
I'm having an issue that looks common when using the FileReference class in FP10 when saving a file.
The ...
1
vote
1answer
589 views
Save local file in Flash Projector using FileReference?
I'm making a Flash projector which will be distributed on CD. I want to allow people to copy files off of the CD. Is this possible? Should I be using FileReference?
1
vote
1answer
355 views
Uploading data with Flex and getting the bytes sent
I want to upload data (not a local file) with Flex (4.1), and show what the progress is of the bytes sent.
Now I use a URLLoader, but I know that URLLoader was designed to download data, I can ...
1
vote
1answer
404 views
Flex, FileReferences upload() error in firefox
swf file in https zone, upload script in http zone.
File upload fine in ie, and not work on firefox, opera.
this code:
request.url = this.main.serverHostUpload + "/upload_web.php";
request.method = ...
1
vote
2answers
1k views
Flex FileReference upload() and .data … does this load the whole file into memory?
I need to upload a very large file to my server, through my Flex application, and I see that Flex Filereference upload() seems to be able to handle it. Does the upload() methods uploads a 'stream' to ...
1
vote
1answer
161 views
Storing a FileReference in a SharedObject
I would like to store a FileReference object somehow and load it when the SWF loads again.
I tried to use the SharedObject class but it does not seem to work. I suspect that what I want to do is not ...
1
vote
1answer
359 views
Limit on FileReference uploads?
I am currently uploading files in ActionScript 3 using the upload() method of the FileReference class.
I built an uploader than can do simultaneous or parallel uploads, having a variable set the ...
1
vote
1answer
235 views
Actionscript image download open custom viewer
i am downloading tiff images from WAMP server using our Flex AIR client.
Using the following code for that.
public static function requestDownload(id:int, defaultName:String):void {
...
1
vote
2answers
1k views
Loading .bmp and .tiff file in Flash 10 using loader
I am developing a Image uploader using Flash 10.
I am using Filereference object to browse images and Loader to show the image:
Sample code:
var tempFileRef:FileReference = FileReference(ev.target);
...
1
vote
1answer
2k views
FileReference and HttpService Browse Image Modify it then Upload it
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 ...
0
votes
1answer
28 views
Flex FileReference prohibited characters
The use of FileReference as a constraint on valid characters.
Error: Error #2087: The FileReference.download() file name contains prohibited characters.
This is fine since I guess the restriction ...
0
votes
1answer
28 views
Flash upload only 2 files on domain at time, FileReference.upload limitations
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 ...
0
votes
1answer
25 views
as2 FileReference() issue
I have a simple swf file upload script that uploads a file as soon as user selects it. It works fine however I'm trying to pass the saved filename from the php script (simple echo "file_name.txt";) ...
0
votes
1answer
19 views
Saving a file in ActionScript 3.0 using FileReference
Hi there I have a game in actionscript 3.0
I have been browsing the internet, I have found something like this
var file:FileReference = new FileReference();
file.addEventListener(Event.SELECT, ...
0
votes
2answers
47 views
Flex download files
I want to download a file in flex. Here is my desired flow
User clicks "view"
Code goes to backend and get the file as an array of bytes
bytes sent from java to flex via a callback
flex then opens ...
0
votes
0answers
68 views
File upload with Flex 4.5 FileReference IOError #2038
I am using FileReference in Flex 4.5 to upload files to a Tibco web server. Below is the flex code that I wrote several months ago to handle this. At the time it worked just fine, however now it no ...
0
votes
0answers
22 views
Flex: Upload a local file using the path
I'm trying to upload-on-demand every .MP4 file from an SD card (E:) to my server when the application starts. So far in my code I have been able to check whether E:\ is valid (the SD card is loaded) ...
0
votes
1answer
40 views
Generate an x second silence audio file with byteArray and Adobe Air
I would like to generate a sound in Adobe Air using ByteArray. The sound should be a silence of x seconds. I found this code that I am using to generate the bytes:
private function encode(data : ...
0
votes
0answers
20 views
How to pass the fileReference type with EventWithObject in flex
can i know is there a way to pass the file Reference object with the EventWithObject? Right now, I can only pass the event data in byteArray format and I couldn't find a way to cast the byteArray ...
0
votes
0answers
53 views
How to prevent download error file using Flex FileRefenerce download api
I am using Flex and Java processing file download. If the file not found that Java throws a Exception, then flex dispatches IOErrorEvent and my Flex UI alert message 'download failure', But the file ...
0
votes
1answer
147 views
Flex URLLoader Upload - Determinate Progress Bar?
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 ...
0
votes
2answers
41 views
How to load user's file in Flash?
I would like to load a user's file right after the app is inicialized. I have this code:
fll = new FileReference();
fll.browse([new FileFilter("Text *.txt", "*.txt")]);
It works fine when ...
0
votes
3answers
216 views
How to download a file from server without user interaction in flex 4 or flex 4.5?
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 ...
0
votes
1answer
85 views
How do i read embedded bytarray file?
I created a tile map editor for my game and it will generate a file when the user is done with the design. The file will store the assets used and other information.
this is the code on how i ...
0
votes
1answer
361 views
Flex file upload issue io error #2038 over HTTPS
Hi i have a flex file upload application over https it works fine on all IE browsers.
Recently a client with IE9 reported a complaint that she's not able to upload files.
I can see the error ...
0
votes
2answers
56 views
Having trouble loading a javascript (images don't load)
I downloaded a calendar javascript. My working directory is /user. I put the script into /user/js/calendar. In my HTML located at user/, I have...
<script language="JavaScript" ...
0
votes
1answer
198 views
How to send error message from servlet to flex FileReference in Flex When download
I use fileReference.download() to download files. The fileReference send request to java servlet.In servlet, some error may be checked. For example error - 'File not found'. I want to send the error ...
0
votes
1answer
116 views
Flex FileReference doesn't work with NTLM authentication
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 ...
0
votes
2answers
115 views
ActionScript FileReference upload onComplete
I am a complete beginner in Flash & Actionscript.
My pet project is this: To provide a www.imageshack.com like service where people could upload single images and later anyone can view it using ...
0
votes
0answers
93 views
FileReference : Upload Behind Proxy
I'm doing a project that make user needs to upload file (image file) from flash to server. And the user is behind proxy. I've tried on firefox, it asks for username and password, and it fails to ...
0
votes
1answer
67 views
Why is TextInput updating after I hit fileReferencer.browse button a second time
In Flex 4, I am trying to make a simple browse button update the text field of an TextInput object with the file name that the browse button gets. It doesn't have to be the full path, all I want is ...
0
votes
0answers
116 views
Destroying a File Reference Object in Flex 4
I have many states within my main application, one state adds an inventory into the database, and another edits inventories. The form that allows a user to add inventory details, also allows the user ...