printing more than 1 field on 1 page and ff

LiveCode is the premier environment for creating multi-platform solutions for all major operating systems - Windows, Mac OS X, Linux, the Web, Server environments and Mobile platforms. Brand new to LiveCode? Welcome!

Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller

Post Reply
haribo
Posts: 23
Joined: Fri Jun 29, 2007 8:04 pm

printing more than 1 field on 1 page and ff

Post by haribo » Fri Jul 06, 2007 8:52 pm

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

kpeters
Posts: 112
Joined: Wed Mar 21, 2007 9:32 pm

Post by kpeters » Fri Jul 06, 2007 10:38 pm

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

haribo
Posts: 23
Joined: Fri Jun 29, 2007 8:04 pm

Post by haribo » Fri Jul 06, 2007 11:41 pm

thats the post what i need at this time. its saturday and my creditcard dont work, the other is not accepted.
only the way, howto dissable the borders isnt a problem
Thanks
Ralle :oops:

haribo
Posts: 23
Joined: Fri Jun 29, 2007 8:04 pm

Post by haribo » Sat Jul 07, 2007 12:33 am

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

Post Reply