I finally got my previous print function to work…now I have a new one…where it prints the booth info that comes up when the user clicks on a rented booth…but for some reason, the MC that is being printed, does not print from the top left corner…it prints like 3 inches indented from the left!!!..I dont know how to fix this, or why this is happening…take a look…
printButton.onRelease = function()
{
_root.hideToolTip(this);
clearInterval(_root.myInterval);
attachMovie("printInfo", "printInfo", 650000);
printInfo.printExName.text = contact.exName.text;
printInfo.printAdd1.text = contact.add1.text;
printInfo.printAdd2.text = contact.add2.text;
printInfo.printAdd3.text = contact.add3.text;
printInfo.printPhone.text = contact.phone.text;
printInfo.printEmail.text = contact.email.text;
printInfo.printWeb.text = contact.web.text;
printInfo.printDesc.text = profile.exProfile.text;
var pj:PrintJob = new PrintJob();
//printInfo._visible = false;
var bInit:Boolean = pj.start();
if(bInit)
{
pj.addPage(printInfo, null, {printAsBitmap:true});
pj.send();
printInfo.removeMovieClip();
}
}