Hi All,I am trying to send a copy of the map to a popup window (TitleWindow) as an image. In the titlewindow, I have implemented the map setter and use the ImageSnapshot.CaptureBitmapData(map) to create a snapshot of the map which is then assigned to a imagecontrol. However, when I run the application the map image in not showing. Not sure what I am doing wrong, but I have seen examples of this being use by others and Wondering if somebody can help me on this issue.private var _map:Map; private var _data:Object; public function set dProvider(value:Object):void { _data=value; ParcelRepeater.dataProvider=_data; } public function set map(value:Map):void { _map = value; _map.zoomSliderVisible = false; _map.scaleBarVisible = false; var bmpMap:BitmapData = ImageSnapshot.captureBitmapData(_map); var bmp:Bitmap = new Bitmap(bmpMap); _map.zoomSliderVisible = true; _map.scaleBarVisible = true; MapImage.source=bmp; }Thanks all.