Wonder if someone can help.
Its important that i'm able to print cards of a high resolution. However when i look at the images on a card such as my company logo it looks fine but when I actually come to print, the quality of the image is awful. I dont understand why - the code I am using to print my cards are
Code: Select all
set the formatForPrinting of stack "test" to false
set the printRotated to true
open printing with dialog
if the result is "Cancel" then exit mouseUp
set the printScale to 1
set the printMargins to 80, 80, 20, 20 --1/2 inch margins
set the printGutters to 20, 20 --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
Code: Select all
Thanks
Daniel