プログレッシブロード

画像をちょっとずつ読みます。
以下のような感じでストリームとして読み込み中のイベント投げ、
終わったら終わった用の処理を入れると。


imageStream = new URLStream();
imageStream.addEventListener( ProgressEvent.PROGRESS , imageStreamProgress );
imageStream.addEventListener( Event.COMPLETE , imageStreamComplete );


Progressive Image Loading with URLStream and Loader.loadBytes in Flash Player 9
http://www.onflex.org/ted/2007/12/progressive-image-loading-with.php


横田