When I print my movie clip gets cut off

Hello everyone I have a problem printing when I print my movie clip gets cut off. I have tried everything I could think of. I would really appreciate a little help please from anyone who has had this problem before or knows the solution.

I have tried playing with landscape, page width, page height, changing the width and height of the mc

please take a look at my code:



function printCertificate (e:MouseEvent):void
{
	trace("in quiz win" + " " + rankScore);
	var testCertificateMc:MovieClip;
	testCertificateMc = new testCertificate();
	addChild (testCertificateMc);
	testCertificateMc.width = 525;
	testCertificateMc.height = 375;
	testCertificateMc.visible = false;
	testCertificateMc.cPoints_txt.text = rankScore;
	testCertificateMc.cName_txt.text = playerFirstName + " " + playerLastName;
	trace("Player Name" + " " + playerFirstName + " " + playerLastName);
	pj.start ();
	//PrintJobOrientation.LANDSCAPE;
	pj.addPage (testCertificateMc, new Rectangle(0, 0, 640, 453));
	//pj.addPage (testCertificateMc)
	//pj.pageWidth;
   	//pj.pageHeight;
	pj.send ();
	//printMc.removeEventListener(MouseEvent.CLICK,printCertificate);
}