Question
Multiple File Upload using HTMLLoader
import flash.html.HTMLLoader;
var input:String = '<html><head><meta charset="UTF-8"></head><body><input type="file" name="files[]" id="abc" multiple></body></html>';
var loader:HTMLLoader = new HTMLLoader();
loader.width = 400;
loader.height = 300;
this.addChild(loader);
loader.loadString(input);
The code above didn't work. Only single file allowed.
I'm using AIR SDK 32
Mozilla/5.0 (Windows; U; en-US) AppleWebKit/533.19.4 (KHTML, like Gecko) AdobeAIR/32.0
=> Safari 5.0.3
The strange thing is, I've been download Safari 5.0.3 browser to test the code, and the code work as expected.
Have I missed something?
Please help!
Thank you!
