I have a stack of about 12 cards (each card contains 7 fields with 54 lines of text each) that I want to print to a pdf. That works fine up to page 7. On the eighth page, the data that is printed to the pdf stops somewhere halfway. I can send the same file directly to a printer and then all 12 pages are printed completely.
Is there a limit to the amount of data that you can write to a pdf? Or is something else going on?
After each page I use the command "print break"; my script is basically this:
open printing to pdf tPDFPath
put 36,36,559,806 into tRect
repeat with i=1 to the number of cards
print card i into tRect
print break
end repeat
close printing
Is there a limit to the amount of data that you can write to a pdf? Or is something else going on?
After each page I use the command "print break"; my script is basically this:
open printing to pdf tPDFPath
put 36,36,559,806 into tRect
repeat with i=1 to the number of cards
print card i into tRect
print break
end repeat
close printing
Statistics: Posted by Martin-HC — Mon Mar 10, 2025 4:24 pm