Not sure if this will help, but maybe you can copy the image to the
users cache to display it.
// make a working copy of a file on the user's disk
var fileRef = new FileReference();
if (fileRef.browse(["Text Files", "*.txt"]) {
fileRef.copyIntoCache("backup-data.txt");
var newFile = new FileReference();
newFile.open("backup-data.txt");
// operate on new file
// ...
}
[EMAIL PROTECTED] wrote:
Thanks for the reply.
I can get the name, however it doesn't provide the path (i.e.
c:\images\image001.jpg)
Mike Boutin mikeb at juicystudios.com
Thu Jun 15 13:03:32 EDT 2006 Is it possible for you to just grab the name after it is selected from
the FileReference object?
var listener:Object = new Object();
listener.onSelect = function(file:FileReference):Void {
trace(file.name);
};
Boots
_______________________________________________
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
_______________________________________________
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com