Hello,

I am building a map which has different layers on it, all on top of one another, all 700x700px and all movieclips. I have a print button (PrintUp) which sends the movieclips to be printed, however when I print, they don't sit on top of one another, they come out separately. How can I get them to print on top of each other like they are in the swf?

The two movieclips are "Background" and "Grass"
Both 700x700 and exactly the same X&Y.

Here is the code below:

PrintUp.addEventListener(MouseEvent.CLICK,Print);
function Print(e:MouseEvent):void
{
var printJob:PrintJob = new PrintJob();
if (printJob.start())
{
if (Background.width>printJob.pageWidth) {
Background.width=printJob.pageWidth;
Background.scaleY= Background.scaleX;
if (Grass.width>printJob.pageWidth) {
Grass.width=printJob.pageWidth;
Grass.scaleY= Grass.scaleX;
}
printJob.addPage(Background);
printJob.addPage(Grass);
printJob.send();
}
}