HyperCard: Script for Printing Individual Cards



I have created a stack of 200 cards with HyperCard version 1.2.5. I
want to print out cards 1, 5, 10, 15, and 20 without printing the whole
stack. What script would do this?

In a button, put the following script:

on mouseUp
set lockscreen to TRUE
put the short name of this card into ThisCard
go to card 1
doMenu "Print Card"
go to card 5
doMenu "Print Card"
go to card 10
doMenu "Print Card"
go to card 15
doMenu "Print Card"
go to card 20
doMenu "Print Card"
go to card ThisCard
end mouseUp


Published Date: Feb 18, 2012