Yes, I'm not disputing that. I think my problem has been misunderstood. The problem is transitioning from a Flex View to another View that displays the StageWebView object using the Slide Transition. It doesn't work that well. So what I'm trying to accomplish is to replace the StageWebView object on the transitioning to View with a bitmap BEFORE the transition starts, so that the transition captures the bitmap and tweens that in the transition. Then when the transition ends put the StageWebView object back onto the stage.
I can capture the StageWebView viewport outside of the transition just fine using the below code... it's just during the transition it's not working. var bitmapData:BitmapData = new BitmapData(_stageWebView.viewPort.width, _stageWebView.viewPort.height); _stageWebView.drawViewPortToBitmapData(bitmapData); _stageWebViewBitmap = new Bitmap(bitmapData); addChild(_stageWebViewBitmap); _stageWebView.stage = null; -- View this message in context: http://apache-flex-users.2333346.n4.nabble.com/Advice-Needed-With-StageWebView-Transitions-tp5373p5399.html Sent from the Apache Flex Users mailing list archive at Nabble.com.
