Here's my code:
<?xml version="1.0" encoding="utf-8"?>
<mx:Application
xmlns:mx="http://www.adobe.com/2006/mxml"
layout="absolute"
horizontalAlign="center"
verticalAlign="middle"
width="100%" height="100%"
backgroundGradientAlphas="[1.0, 1.0]"
backgroundGradientColors="[#FFFFFF, #FFFFFF]">
<mx:Script>
<![CDATA[
import mx.printing.FlexPrintJob;
import mx.printing.FlexPrintJobScaleType;
private function printMe():void
{
var job:FlexPrintJob = new FlexPrintJob;
job.start();
job.addObject(img, FlexPrintJobScaleType.SHOW_ALL);
job.send();
}
]]>
</mx:Script>
<mx:Image id="img"
source="http://webdev2/students/dra/21312.swf"
click="printMe()"
left="0"
top="0"
scaleContent="false"
autoLoad="true"/>
</mx:Application>