Code: Select all
on mouseUp
answer printer
if the result is "cancel" then
set the printRanges to "all"
exit mouseUp
end if
put the number of this card into tInitCard
-- start the print job
lock screen
open printing
repeat with temp = 1 to the number of cards of this stack
go to card temp
revPrintField the name of field "PrintContents"
print break
end repeat
-- finish the print job
close printing
go to card tInitCard
unlock screen
set the printRanges to "all"
end mouseUp
- any thoughts please ? (BTW, it's Windows XP)