[fusionpro] address line help

2007-06-22 Thread Shane Gillies
I have a mailing list with typical address1 (123 Smith Ave) - In my template I want to have a line that uses the street name and the full street type in a paragraph. Example: "Make your home stand out from all the others on Smith Avenue" Does anyone know a good rule that will strip out the hous

[fusionpro] Determine height and width of a graphic

2007-06-22 Thread dsweet
I would like to be able to read in a graphic variable (to be later used as an inline graphic), have fusionpro determine if it is a landscape or a portrait graphic (length greater than width or not) so I can place it in a proper sized box with text below it. Is there any way of determining the actu

[fusionpro] Re: Mc - De - Mac - La - Mac

2007-06-22 Thread rsimpson
Did you ever get any resolution to this issue. I ask because I am having a similar issue. +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+- Calling all FP Web Users! Do you have a question or lots of knowledge to share about FusionPro Web? If so, join our Printable Web to Print Users' F

[fusionpro] Can Callbacks be Nested?

2007-06-22 Thread rblackmer
Is it possible for either an OnJobStart or OnRecordStart callback trigger an OnNewOutputFile callback? I'm "trying" to split the quantity of records from the main database into each sub-group during composition... automatically (i.e. all "Group A" records are composed and saved in "Group A" output

[fusionpro] Re: Can Callbacks be Nested?

2007-06-22 Thread raul . ruiz
Ryan, I believe that you might need to use the following original post from Dan Korn and a later re-post from David Sweet . === Date: Fri, 17 Nov 2006 13:31:01 -0600 Author: "Dan Korn" <[EMAIL PROTECTED]> Subject: RE: Splitting Records based on a Field in the data Body: > Is it possible to split

[fusionpro] skip record

2007-06-22 Thread laura
Hi, I was wondering if someone would be so kind and help me with this piece of code. I have a field called registered for 2007. They put a x in the field if the people are already registered. They do no want that record printed. Thanks in advance. Laura +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-

[fusionpro] RE: skip record

2007-06-22 Thread Dan Korn
Put some code like this into the OnRecordStart callback: if (Field("registered") == "x") FusionPro.Composition.composeThisRecord = false; Dan +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+- Calling all FP Web Users! Do you have a question or lots of knowledge to share about

[fusionpro] Re: Can Callbacks be Nested?

2007-06-22 Thread Ryan Blackmer
Thank Raul, Unfortunately... I was the original poster of "Splitting Records based on a Field in the data Body". Your suggestion does work and I currently use it or manually split the database depending on the number of total records. I simply want to automate the whole process since ther

[fusionpro] Collated Output

2007-06-22 Thread kristin
Hi! Does anyone know if I have a 2 page document (made from an 8 page saddle-stitch template) that I'm making into a large variable run, if there is an option either in the imposition program or the compose settings that will allow me collate the two pages? Thanks! +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+

[fusionpro] Pages per record.

2007-06-22 Thread Larry Whiting
Is there a way to count the pages per record if each record dictates whether or not there is an overflow page such in a financial statement? Each customer has a different amount of transactions, so 1 person could have 1 page and another have 4. I need to put a code on for the inserter to read

[fusionpro] Can I horizontally scale fonts?

2007-06-22 Thread prepress
I have a client that I am building a template for whose font style is Goudy 10pt scaled horizontally 80% - is there anyway to do this? Eventually this will be a web template but right now I'm just trying to get the template built... Thanks for all your help! +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-

[fusionpro] RE: Pages per record.

2007-06-22 Thread Dan Korn
Hi Larry, You can insert the $pagenum and $pagecount variables into a text frame, but you can't access the values in a rule. Dan P.S. Please post only plain-text messages to the forum. +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+- Calling all FP Web Users! Do you have a question

[fusionpro] RE: Mc - De - Mac - La - Mac

2007-06-22 Thread Dan Korn
There's no rule you can write which will cover every possible case like this. Such is the folly in relying on computerized algorithms for spelling and grammar issues which do not always follow a set of logical rules, especially for things such as proper names. There are a lot of assumptions that

[fusionpro] Re: Can Callbacks be Nested?

2007-06-22 Thread David Sweet
Ryan, Just sort of thinking out loud here, but if you look at the file on the KnowledgeBase for the multiple Business Card, it has a method in its script to write records to a new file that you create in OnJobStart. If you augment this script to: 1) not be of a variable length but a specified "ch

[fusionpro] Re: Can Callbacks be Nested?

2007-06-22 Thread Ryan Blackmer
David, Thank you! The "second thought" sounds very promising... we'll give it a try. As I mentioned, I already have an ExternalDataFileEx creating a summery sheet with all the relevant data for our xerox/bindery/ mailing departments. And I've already created a rule to recognize the chuck

[fusionpro] RE: address line help

2007-06-22 Thread Dan Korn
Hi Shane, You have two main problems here: One is to split off the "number" part of the address from the street name. The other is to convert abbreviations of street suffixes such as St., Ave., and Blvd. into their non-abbreviated equivalents. Each of these problems poses its own set of challen

[fusionpro] RE: Can I horizontally scale fonts?

2007-06-22 Thread Dan Korn
Yes. The easiest way is to the use a tag with the "textwidth" type. For instance: Here is my text. You could also use a tag after the tag to scale the glyphs. However, the setwidth will automatically be reset to match the font size on the next tag. Dan +-+-+-+-+-+-+-

[fusionpro] Help Creating an Exception Rule

2007-06-22 Thread seanyob
A client recently supplied 4 completly different layouts, and one master database file which contains roughly 250 entries. The first field is "Version Code" which has either an A, B, C, or D for their values. I then have 4 PDFs created, named with their respected labels (A-D). I want to figure out

[fusionpro] RE: Help Creating an Exception Rule

2007-06-22 Thread WARREN LEYES
can you create a graphic frame and create 4 resource files (your 4 pdf's) then create a switch graphic rule such as if version == A then return resourceA , if version == B then return resourceB if version == C then return resourceC if version == D then return resourceD > Date: Fri, 22 J