Is there a way to print just a section of a MC?

I have a print button with print a MC in the same swf.

Can I add x,y or height and width coordinates to sent to the printer action?



CODE on PRINT BUTTON
----------------------------------
Code:
on (release) {
	printAsBitmap("Page_1_mc", "bmax");
	tip("");
	
}
on (rollOver) {
	tip("Print");
}
on (rollOut) {
	tip("");
}