i like to ask about one thing :
If i create Loader and load external image by URLRequest , ill have result :
loader.content is Bitmap
loader.content.bitmapData is BitmapData
But if I use Loader.loadBytes(ImageBytes) , result is different even if ImageBytes is loader.contentLoaderInfo.bytes :
bytesLoader.content is MovieClip
bytesLoader.content.getChildAt(0) is Bitmap
bytesLoader.content.getChildAt(0).bitmapData is BitmapData
why ?