# Printing with flash

**URL:** https://forum.kirupa.com/t/printing-with-flash/284039
**Category:** Uncategorized
**Created:** [March 14, 2009, 1:22am UTC](https://forum.kirupa.com/t/printing-with-flash/284039 "2009-03-14T01:22:52Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![danny0085](https://avatars.discourse-cdn.com/v4/letter/d/2acd7d/32.png) [@danny0085](https://forum.kirupa.com/u/danny0085)
#### Post date: [March 14, 2009, 1:22am UTC](https://forum.kirupa.com/t/printing-with-flash/284039/1 "2009-03-14T01:22:52Z")

</div>

I have a MovieClip **map** inside I have a \*\*UILoader \*\*where I load a map, this map is very big so I need to use a mask:

// Draw the mask  
var square:Sprite = new Sprite();  
square.graphics.lineStyle(1, 0x000000);  
square.graphics.beginFill(0x0000ff);  
square.graphics.drawRect(0, 0, 600, 600);  
square.graphics.endFill();  
this.addChild(square);

mapa.mask = square;

var myPrintJob PrintJob = new PrintJob();  
myPrintJob.start();  
myPrintJob.addPage(mapa);  
myPrintJob.send();

when the parameter \*\*scaleContent \*\*of the \*\*UILoader \*\*is \*\*true \*\*print the map, but I need this parameter to be **false** , and when it is false it don´t print

What I am doing wrong?  
Thanks for your time.
