I'm having an issue with one of my Flex applications...it is basically
a swfLoader inside a parent swf. The parent swf has a button that
prints the contents of the child as follows:
public function print(contents:Container):void
{
var job:FlexPrintJob = new FlexPrintJob();
if(job.start() != true){return;}
job.addObject(contents, FlexPrintJobScaleType.SHOW_ALL);
job.send();
}
The problem is...the last word of any Text components I have in the
container disappear whenever I print. Otherwise it prints as expected.
Any ideas how to fix this?
Thanks!
Chris