I have developed some quote generating software in RunRev studio 3.5 and am having problems printing pages exactly as they are shown on the cards themselves.
I'm using the folowing scrypt:
Code: Select all
on mouseUp
set the printRotated to true
open printing with dialog
if the result is "Cancel" then exit mouseUp
set the printScale to .4
set the printMargins to 36,36,36,36 --1/2 inch margins
set the printGutters to 18,18 --1/4 inch gutters
repeat with i = 1 to number of cards
print card i
end repeat
close printing -- sends job to printer
end mouseUp
The positioning of my text on the cards are definitely correct but when I print these cards sometimes the text at the end of each line are cut off or sometimes text in one field are not allined with the text in a field above or below.
In short, the text isnt always being printed as it is shown on the cards.
Am I missing a trick or 2?
Thanks
Daniel