Code that had been working is suddenly not.
Printing works fine in all browsers even Chrome on MAC( Chrome v: 21.0.1180.57 > which reports up to date. )
A movieclip is being added via AddPage. Then printed.
Expected behavior is that the movieclip is printed as it is in other browsers. Instead the SWF itself is being printed even when bypassing Chrome's print preview and using the standard one.
Any ideas? The generic code is below. The code isn't as important. This has worked for several thousands of users for a few months. Chrome issue popped up yesterday.
if(myPrintJob.start()) {
if (myPrintJob.addPage(containerElement, rect, options)){
pageCount++;
}
Provider.testProvider("service.userPrinted", dataStr, userPrintedResult, onFault);
if (pageCount > 0) {
myPrintJob.send();
}
}