actionscript 3 で画像を表示している場合は何が良いでしょうか。Embed を使用するか、urlRequest を使用して loader に表示する方がよいでしょうか。swf サイズとエンド ユーザー エクスペリエンスの観点から質問しています。
var myImageLoader:Loader = new Loader();
var myImageLocation:URLRequest = new URLRequest("images/loading.gif");
myImageLoader.load(myImageLocation);
addChild(myImageLoader)