BulkLoader の type は指定した方がよい
May 29, 2008category: Flash
BulkLoader でちょっとはまった。ファイルタイプを明示的に指定しないと、サーバプログラムが出力するファイルを取得できない (参考)。
// returning a simple text
bulkInstance.add("http://mysite.com/top-ten.php", {type:"text"});
// returning a xml file
bulkInstance.add("http://mysite.com/top-ten.php", {type:"xml"});
// returning a jpeg image:
bulkInstance.add("http://mysite.com/top-ten.php", {type:"image"});
type を省略せずに必ず書く癖を付けた方がよい。

comments