-
Website
http://carefulweb.com/ -
Original page
http://carefulweb.com/blog/2008/06/24/upload-server-adobe-air-and-javascript/ -
Subscribe
All Comments -
Community
-
Top Commenters
-
dobrych
2 comments · 3 points
-
moving companies boston
1 comment · 1 points
-
tigerthink
1 comment · 1 points
-
sami_c
1 comment · 2 points
-
-
Popular Threads
Here a sample init dialog code:
<pre>
var file = new air.File();
var filter = new runtime.Array(new air.FileFilter("All files", "*.*"));
file.addEventListener(air.Event.SELECT, callback);
// where callback will be run on file selection
// then show dialog
try {
file.browseForOpen("Open file", filter);
} catch(e) {}
</pre>
Thanks