How to capture panel content in flex 4 - Actionscript
I am creating a application in which Live video streaming in publishing in mx:video object. I want t开发者_StackOverflow社区o capture. If any one can help me out it will great for me. else anyhow I can capture the panel content then also its fine...!!
Thanks,
If you want to capture the content as a Bitmap instance :
var bitmapData:BitmapData = new BitmapData(panel.width,panel.height);
bitmapData.draw(panel, new Matrix());
var bitmap = new Bitmap(bitmapData);
精彩评论