Working on printing out a card. The height of the card is the equivalent two A4 sheets. My print code below only seems to print 1 page. How do I force it to print the equivalent of the second page?
I've got my print code below, anyone out there to advise me how to get the second page out. Im wondering whether I need to split the second page onto another card and then print all cards, but I want explore doing everything on one card as its easier for me to format.
Code: Select all
on mouseUp
reset printing
set the printPaperOrientation to "portrait"
--A4 dimensions are 595,842
--set the printPaperSize to 595,842
set the printMargins to 13,0,13,0
--set the printMargins to 72,144,72,144
set the printGutters to 0,0
print this card --from 0,30 to 595,842
close printing
end mouseUp
Jalz