Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
59 views

Choose sorting type in flash.net.FileReferenceList browse method

It is possible in the open file dialog of flash.net.FileReferenceList to specify the file sorting order, ie the equivalent to make in Windows File Explorer "Arrange icons by"?
1
vote
1answer
540 views

FileReferenceList: Forcing browse() dialog box to stay on top

This is probably going to be a simple question, but I can't seem to find my answer online after searching. I am using the following simple code: var fileReferenceList:FileReferenceList = new ...
0
votes
0answers
23 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
79 views

AS3 FileReferenceList : I want to select more than 1000 files

I am using FileReferenceList in my flex application to upload the files on server. The server code is in php. When I select 525 or less from the browse window, then its ok. But when I try to select ...
0
votes
1answer
105 views

loading a large number of images

I have this code which works fine when selecting a small number of images. public var fileReferenceList:FileReferenceList; public function browseFiles(event:Event = null):void { ...
0
votes
1answer
2k views

Flex - Dispatch custom Event on receipt of standard Event

I am processing a FileReferenceList.fileList[] of multiple files a user selects in the following code.. for (i=0;i < event.currentTarget.fileList.length; i ++){ fileByteData = new ByteArray(); ...
0
votes
1answer
4k views

flex - check image dimensions before upload using filereference

In my Flex application, I use a FileReferenceList that the user can populate with multiple files using fileList.browse() before upload. I check each file's size and use fileList[i].upload() to upload ...