I have a stack containing 15 cards and a user is able to click on a button to print all of these cards. However, on certain occassions a user may not want to print all of them and am thinking of putting 15 'check buttons' on the first card which the user can click if they do not require certain cards not to be printed.
At the moment the code I am using in the 'print' button is:
Code: Select all
set the formatForPrinting of stack "qg" to true
set the printRotated to false
open printing with dialog
set the printScale to 1
set the printMargins to 0, 0, 0, 0 --1/2 inch margins
set the printGutters to 0, 0 --1/4 inch gutters
repeat with i = 1 to number of cards
print card i
end repeat
Cheers
Daniel