need a howto.
i must print several fields in 1 page, on top of page a small field with name or any other things, then date, then the text. print card cant work, because the text of the third field is variable up to 5 pages. any ideas??please
ralle
printing more than 1 field on 1 page and ff
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Ralle ~
spend the 5 bucks and buy Dan Shafer's eBook on Revolution Printing - best 5 bucks you will have ever spent. It answers that question and some you didn't even know you had.
http://www.shafermediastore.com/tech_main.html
HTH
Kai
spend the 5 bucks and buy Dan Shafer's eBook on Revolution Printing - best 5 bucks you will have ever spent. It answers that question and some you didn't even know you had.
http://www.shafermediastore.com/tech_main.html
HTH
Kai
okay, i have found this code
on printAllFields
repeat with thisField = 1 to the number of fields
-- collect data in collectedFields variable:
put "<p><b>" & the short name of field thisField \
& colon & "</b></p>" \
& the htmlText of field thisField after collectedFields
end repeat
-- print the variable:
revShowPrintDialog false, true
revPrintText collectedFields
end printAllFields
where must i put it with witch words before
Ralle
on printAllFields
repeat with thisField = 1 to the number of fields
-- collect data in collectedFields variable:
put "<p><b>" & the short name of field thisField \
& colon & "</b></p>" \
& the htmlText of field thisField after collectedFields
end repeat
-- print the variable:
revShowPrintDialog false, true
revPrintText collectedFields
end printAllFields
where must i put it with witch words before
Ralle