Greetings, I'm using PrintJob to print some assets within the Flash, but it always prints out purple-ish. I've even tried making a new file, bringing in a new image, & yet - it prints purple!
Anyone know why, &/or how to fix it?

Here's the code I'm using:
Code:
printBtn.onRelease = function() {
	var pj = new PrintJob();
	var success = pj.start();
	if(success) {
		pj.addPage (_root.myMC, {xMin : 0, xMax: 222, yMin: 0, yMax: 223},{printAsBitmap:false});
		 pj.send();
	}
	delete pj;
}
(I've tried printAsBitmap both true & false, & have removed it completely - no change)
Here's an image of the issue, on the left is the actual colors, on the right is the purple color-eater...