# Please help, printjob problems

**URL:** https://forum.kirupa.com/t/please-help-printjob-problems/155701
**Category:** Uncategorized
**Created:** [July 19, 2005, 6:48pm UTC](https://forum.kirupa.com/t/please-help-printjob-problems/155701 "2005-07-19T18:48:22Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![bleach20xx](https://avatars.discourse-cdn.com/v4/letter/b/45deac/32.png) [@bleach20xx](https://forum.kirupa.com/u/bleach20xx)
#### Post date: [July 19, 2005, 6:48pm UTC](https://forum.kirupa.com/t/please-help-printjob-problems/155701/1 "2005-07-19T18:48:22Z")

</div>

Hey all,

I’m attempting to make a printjob for a project I am currently working on.

I want to be able to print everything on my third level, and based on tutorials / threads I’ve checked out here and on [actionscript.org](http://actionscript.org), the code below is what I came up with.

– EDIT –  
The problem NOW is that when I press the print button, the printer just spits out a blank page. ☹

```auto
_root.navi.printdesign.onRelease = function()

	{
		var pj = new PrintJob();
		var success = pj.start();

		var bitmap = new Object();
		bitmap.printAsBitmap = true;
		if (success) {

	  pj.addPage("3", {xMin : 0, xMax: 701, yMin: 0, yMax: 501}, {printAsBitmap: true}, {frameNum: 2} );

		 }
		delete pj;
	}

```
