[fusionpro] RE: Graphic not previewing

2007-08-27 Thread Alex Marshall
What type of Graphic is it? EPS,JPG, PNG, PDF?



-Original Message-
From: Carrie Dodt [mailto:[EMAIL PROTECTED]
Sent: Monday, August 27, 2007 3:04 PM
To: FusionPro Users Forum
Subject: [fusionpro] Graphic not previewing



What could make graphic(s) not preview on the PDF side? I've double  
checked  everything seems to be mapped out correctly.

Thanks,

Carrie
KM





+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+- 
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' Forum today!

Send email to [EMAIL PROTECTED] to find out how! 
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-


--
Users of FusionPro Desktop have unlimited free email support. Contact Printable 
Support at [EMAIL PROTECTED] 
--
View FusionPro Knowledge Base, FusionPro Samples at
www.printable.com/vdp/desktop.htm

--
You are currently subscribed to fusionpro as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]
--


--
Note:  All e-mail sent to or from this address will be received or otherwise 
recorded by the e-mail recipients of this forum. It is subject to archival, 
monitoring or review by, and/or disclosure to someone other than the recipient. 
Our privacy policy is posted on www.printplanet.com
--


+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-
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' Forum today!

Send email to [EMAIL PROTECTED] to find out how!
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-


--
Users of FusionPro Desktop have unlimited free email support. Contact Printable 
Support at [EMAIL PROTECTED]
--
View FusionPro Knowledge Base, FusionPro Samples at
www.printable.com/vdp/desktop.htm

--
You are currently subscribed to fusionpro as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]
--


--
Note:  All e-mail sent to or from this address will be received or otherwise 
recorded by the e-mail recipients of this forum. It is subject to archival, 
monitoring or review by, and/or disclosure to someone other than the recipient. 
Our privacy policy is posted on www.printplanet.com
--



[fusionpro] RE: Layout Reuse

2007-08-23 Thread Alex Marshall
Hello Graham,
If you are asking how to import variable layout as well as the data from 
another project, use the following steps:
 
Open the new pdf. 
From the FusionPro menu, select Data DefinitionWizard. Click Import data 
from another document. 
Click Next.
Browse to the folder that contained the original pdf and its resources. The pdf 
will be referenced by a def extension.
Click Open. Then Finish.
Click FusionPro, Advanced, Import. Browse to the folder containing the 
original pdf. Select it. 
You will then see the options for Variable Layout, Colors, Paragraph Styles.
 
HTH
 
-Alex
 

-Original Message-
From: Graham Lower [mailto:[EMAIL PROTECTED]
Sent: Thursday, August 23, 2007 11:44 AM
To: FusionPro Users Forum
Subject: [fusionpro] Layout Reuse



Using Fusion Pro Desktop I have created a layout that meets our needs for a 
particular project.   I would like to reuse the layout against with another PDF 
(actually it is a variation of the original PDF).  Is it possible to do such 
and if so how would one suggest I go about it?

 

Any guidance would be appreciated.

 

Cheers.

  _  

 

Graham Lower

Technology Manager, GPM

[EMAIL PROTECTED]

707.588.8028

 

Visit our web site at www.printing-mailing.com

 

+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+- 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' Forum today! Send email to 
[EMAIL PROTECTED] to find out how! 
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+- -- Users of FusionPro 
Desktop have unlimited free email support. Contact Printable Support at [EMAIL 
PROTECTED] -- View FusionPro Knowledge Base, FusionPro Samples at 
www.printable.com/vdp/desktop.htm -- You are currently subscribed to fusionpro 
as: [EMAIL PROTECTED] To unsubscribe send a blank email to [EMAIL PROTECTED] -- 
-- Note: All e-mail sent to or from this address will be received or otherwise 
recorded by the e-mail recipients of this forum. It is subject to archival, 
monitoring or review by, and/or disclosure to someone other than the recipient. 
Our privacy policy is posted on www.printplanet.com -- 



+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-
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' Forum today!

Send email to [EMAIL PROTECTED] to find out how!
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-


--
Users of FusionPro Desktop have unlimited free email support. Contact Printable 
Support at [EMAIL PROTECTED]
--
View FusionPro Knowledge Base, FusionPro Samples at
www.printable.com/vdp/desktop.htm

--
You are currently subscribed to fusionpro as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]
--




--
Note:  All e-mail sent to or from this address will be received or otherwise 
recorded by the e-mail recipients of this forum. It is subject to archival, 
monitoring or review by, and/or disclosure to someone other than the recipient. 
Our privacy policy is posted on www.printplanet.com
--



[fusionpro] RE: FusionPro date conversion

2007-08-23 Thread Alex Marshall
Hello,


If you just want to take today's date, here's the rule:

return FormatDate(Today(), ld, lm dd, );

ld = long day (Monday, Tuesday, etc.)
lm = long month (June, July, August, etc.)
dd = two digits for the  day (15, 16, 09, etc.)
 = the entire year 

For today, this rule returns Friday, June 15, 2007

You can also replace the Today() with Field(Date) to get the field data your 
user entered.

Alex

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Thursday, August 23, 2007 1:04 PM
To: FusionPro Users Forum
Subject: [fusionpro] FusionPro date conversion


Hello everyone!

I am using a customer-provided CSV file (Excel) and one of the fields has
a date. The date is formatted like this:

11/02/2007

I am trying to figure out how to write a rule or alter an existing rule to
make the date appear as this (without changing the customer's file):

November 02, 2007

If anyone has any idea how to do this, please let me know! It would be
greatly appreciated. Thanks!!!

~Summer Cutler

+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+- 
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' Forum today!

Send email to [EMAIL PROTECTED] to find out how! 
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-


--
Users of FusionPro Desktop have unlimited free email support. Contact Printable 
Support at [EMAIL PROTECTED] 
--
View FusionPro Knowledge Base, FusionPro Samples at
www.printable.com/vdp/desktop.htm

--
You are currently subscribed to fusionpro as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]
--


--
Note:  All e-mail sent to or from this address will be received or otherwise 
recorded by the e-mail recipients of this forum. It is subject to archival, 
monitoring or review by, and/or disclosure to someone other than the recipient. 
Our privacy policy is posted on www.printplanet.com
--


+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-
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' Forum today!

Send email to [EMAIL PROTECTED] to find out how!
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-


--
Users of FusionPro Desktop have unlimited free email support. Contact Printable 
Support at [EMAIL PROTECTED]
--
View FusionPro Knowledge Base, FusionPro Samples at
www.printable.com/vdp/desktop.htm

--
You are currently subscribed to fusionpro as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]
--


--
Note:  All e-mail sent to or from this address will be received or otherwise 
recorded by the e-mail recipients of this forum. It is subject to archival, 
monitoring or review by, and/or disclosure to someone other than the recipient. 
Our privacy policy is posted on www.printplanet.com
--



[fusionpro] RE: Intelligent Barcode font

2007-08-23 Thread Alex Marshall
IDAutomation4State

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]
Sent: Thursday, August 23, 2007 12:06 PM
To: FusionPro Users Forum
Subject: [fusionpro] Intelligent Barcode font


The release notes for 4.2 states, The Intelligent Mail barcode font
(formerly known as OneCode and 4-State) is included with this
release.

What is the name of this font and where do I find it?

+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+- 
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' Forum today!

Send email to [EMAIL PROTECTED] to find out how! 
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-


--
Users of FusionPro Desktop have unlimited free email support. Contact Printable 
Support at [EMAIL PROTECTED] 
--
View FusionPro Knowledge Base, FusionPro Samples at
www.printable.com/vdp/desktop.htm

--
You are currently subscribed to fusionpro as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]
--


--
Note:  All e-mail sent to or from this address will be received or otherwise 
recorded by the e-mail recipients of this forum. It is subject to archival, 
monitoring or review by, and/or disclosure to someone other than the recipient. 
Our privacy policy is posted on www.printplanet.com
--


+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-
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' Forum today!

Send email to [EMAIL PROTECTED] to find out how!
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-


--
Users of FusionPro Desktop have unlimited free email support. Contact Printable 
Support at [EMAIL PROTECTED]
--
View FusionPro Knowledge Base, FusionPro Samples at
www.printable.com/vdp/desktop.htm

--
You are currently subscribed to fusionpro as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]
--


--
Note:  All e-mail sent to or from this address will be received or otherwise 
recorded by the e-mail recipients of this forum. It is subject to archival, 
monitoring or review by, and/or disclosure to someone other than the recipient. 
Our privacy policy is posted on www.printplanet.com
--



[fusionpro] RE: HELP with Fusion Pro Imposer

2007-08-23 Thread Alex Marshall
Hello Dawn,
Where are your resources in relation to the variable pdf? Are they in the same 
folder? 
Are the resources located within sub-directories of the main folder?

-Alex

-Original Message-
From: Dawn McAtee Wheeler [mailto:[EMAIL PROTECTED]
Sent: Thursday, August 23, 2007 3:23 PM
To: FusionPro Users Forum
Subject: [fusionpro] RE: HELP with Fusion Pro Imposer


No just on my desk top.
 
 On Aug 23, 2007, at 3:12 PM, Dawn McAtee Wheeler wrote:
 
 Macintosh system error (-40)
 
 Are you composing to or from a network drive?
 
 -- Brian Ray
 




+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+- 
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' Forum today!

Send email to [EMAIL PROTECTED] to find out how! 
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-


--
Users of FusionPro Desktop have unlimited free email support. Contact Printable 
Support at [EMAIL PROTECTED] 
--
View FusionPro Knowledge Base, FusionPro Samples at
www.printable.com/vdp/desktop.htm

--
You are currently subscribed to fusionpro as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]
--


--
Note:  All e-mail sent to or from this address will be received or otherwise 
recorded by the e-mail recipients of this forum. It is subject to archival, 
monitoring or review by, and/or disclosure to someone other than the recipient. 
Our privacy policy is posted on www.printplanet.com
--


+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-
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' Forum today!

Send email to [EMAIL PROTECTED] to find out how!
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-


--
Users of FusionPro Desktop have unlimited free email support. Contact Printable 
Support at [EMAIL PROTECTED]
--
View FusionPro Knowledge Base, FusionPro Samples at
www.printable.com/vdp/desktop.htm

--
You are currently subscribed to fusionpro as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]
--


--
Note:  All e-mail sent to or from this address will be received or otherwise 
recorded by the e-mail recipients of this forum. It is subject to archival, 
monitoring or review by, and/or disclosure to someone other than the recipient. 
Our privacy policy is posted on www.printplanet.com
--



[fusionpro] RE: Font Troubles

2007-08-17 Thread Alex Marshall
Hello Mike,

Navigate your hard drive to the following location:
C:\program files \ Printable \ FusionPro\  Fonts
or
machd:library:preferences:printable:fusionpro:fonts

 
Open the following files in a text editor:
Fonts.ini
Fonts. err
Look in the Fonts.err file and see if there is an error relating to the 
Barmeno font. 
Also, in the Fonts.ini file, look to see if the font name matches
how it is identified in the Windows/ Font or the Library:Fonts on the Mac.

-Alex

-Original Message-
From: Mike McGonagle [mailto:[EMAIL PROTECTED]
Sent: Friday, August 17, 2007 2:21 PM
To: FusionPro Users Forum
Subject: [fusionpro] Font Troubles


Hello all,

I have a job that is using the font Barmeno, and I have tried to load
this font into FusionPro about 10 times (thru the 'Load Fonts' menu in
Acrobat). I never see it in the displayed list as they are being
loaded, and when I try to preview the font, it shows up in Arial...

BUT, when I open up the editing dialog box, it displays the font
correctly, and shows the proper name that was speced.

What gives? I have tried rebooting my machine, loading the font into
the system directly (instead of using MasterJuggler), and what is more
trouble is that just yesterday everything was working fine.


Thanks,

Mike McGonagle

+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+- 
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' Forum today!

Send email to [EMAIL PROTECTED] to find out how! 
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-


--
Users of FusionPro Desktop have unlimited free email support. Contact Printable 
Support at [EMAIL PROTECTED] 
--
View FusionPro Knowledge Base, FusionPro Samples at
www.printable.com/vdp/desktop.htm

--
You are currently subscribed to fusionpro as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]
--


--
Note:  All e-mail sent to or from this address will be received or otherwise 
recorded by the e-mail recipients of this forum. It is subject to archival, 
monitoring or review by, and/or disclosure to someone other than the recipient. 
Our privacy policy is posted on www.printplanet.com
--


+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-
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' Forum today!

Send email to [EMAIL PROTECTED] to find out how!
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-


--
Users of FusionPro Desktop have unlimited free email support. Contact Printable 
Support at [EMAIL PROTECTED]
--
View FusionPro Knowledge Base, FusionPro Samples at
www.printable.com/vdp/desktop.htm

--
You are currently subscribed to fusionpro as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]
--


--
Note:  All e-mail sent to or from this address will be received or otherwise 
recorded by the e-mail recipients of this forum. It is subject to archival, 
monitoring or review by, and/or disclosure to someone other than the recipient. 
Our privacy policy is posted on www.printplanet.com
--



[fusionpro] RE: Inserting a single page from an external pdf

2007-08-01 Thread Alex Marshall
Hello Larry,

Yes, in JavaScript rules.  If you're talking about inserting a page from
an external PDF file, you want to create a new FusionProResource object,
and set its pageNumber property to the desired page.  If you want to
select pages from within the template document, you can use the
FusionPro.Composition.SetBodyPageUsage function to enable particular
pages for each record.

For the first part of your question about inserting the PDF pages,
there's a sample in the FusionPro  knowledgebase located here:
http://www.printable.com/support/kb

that shows exactly this.  It's
called Inserting Multi-page PDF variable graphics and is under the
Sample Jobs area.  Hope this helps.

In short, you can query any variable PDF graphic resource to find out
how many pages are in it.  Here's a code snippit from the sample:

//Create a new resource that references this 
PDFresourceRef = CreateResource(pathToPDF ,'graphic' ,'no');

//Find out how many pages it has
pagesInPDF = PDFresourceRef.countPages;


Hope this information helps.

-Alex



-Original Message-
From: Larry Whiting [mailto:[EMAIL PROTECTED]
Sent: Wednesday, August 01, 2007 11:03 AM
To: FusionPro Users Forum
Subject: [fusionpro] Inserting a single page from an external pdf


Are there any examples of inserting a single page from a multiple page
pdf (external file)?

Larry Whiting
Rastar Digital Marketing
[EMAIL PROTECTED]
T801-990-6421
C801-558-5316



+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+- 
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' Forum today!

Send email to [EMAIL PROTECTED] to find out how! 
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-


--
Users of FusionPro Desktop have unlimited free email support. Contact Printable 
Support at [EMAIL PROTECTED] 
--
View FusionPro Knowledge Base, FusionPro Samples at
www.printable.com/vdp/desktop.htm

--
You are currently subscribed to fusionpro as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]
--


--
Note:  All e-mail sent to or from this address will be received or otherwise 
recorded by the e-mail recipients of this forum. It is subject to archival, 
monitoring or review by, and/or disclosure to someone other than the recipient. 
Our privacy policy is posted on www.printplanet.com
--


+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-
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' Forum today!

Send email to [EMAIL PROTECTED] to find out how!
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-


--
Users of FusionPro Desktop have unlimited free email support. Contact Printable 
Support at [EMAIL PROTECTED]
--
View FusionPro Knowledge Base, FusionPro Samples at
www.printable.com/vdp/desktop.htm

--
You are currently subscribed to fusionpro as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]
--


--
Note:  All e-mail sent to or from this address will be received or otherwise 
recorded by the e-mail recipients of this forum. It is subject to archival, 
monitoring or review by, and/or disclosure to someone other than the recipient. 
Our privacy policy is posted on www.printplanet.com
--



[fusionpro] RE: barcode font?

2007-08-01 Thread Alex Marshall
Hello Steve, 

By default, FusionPro looks to the Windows / Font folder for the fonts.
Adobe ships its fonts and loads them to its own font folder in its parent 
directory.
Install the font via the Control Panel in Windows, and invoke the Load Fonts 
option
from the FusionPro menu.

HTH
-Alex

-Original Message-
From: Steve Blatman [mailto:[EMAIL PROTECTED]
Sent: Wednesday, August 01, 2007 4:58 PM
To: FusionPro Users Forum
Subject: [fusionpro] barcode font?


I have a truetype barcode font that I use on my Accufast inkjet 
address printer for the postnet bar codes. I'm sure I've used it in 
Fusion Pro before, but I'm having a bit of a problem.

I'm using a pc, with Adobe CS2 (Acrobat 7). Adobe Type Manager shows 
the barcode font as active. I can use it in Word (I did it as a 
check), but it doesn't show up in the font list in a Fusion Pro text 
block. I've restarted Fusion Pro, and restarted the pc. What did I 
miss?

TIA,
Steve

Steve Blatman
Ink Spot Printing  Copy Center, Inc.
14 Church Road, Frazer, PA 19355 USA
Tel: 610-647-0776
Fax: 610-647-4560


+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+- 
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' Forum today!

Send email to [EMAIL PROTECTED] to find out how! 
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-


--
Users of FusionPro Desktop have unlimited free email support. Contact Printable 
Support at [EMAIL PROTECTED] 
--
View FusionPro Knowledge Base, FusionPro Samples at
www.printable.com/vdp/desktop.htm

--
You are currently subscribed to fusionpro as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]
--


--
Note:  All e-mail sent to or from this address will be received or otherwise 
recorded by the e-mail recipients of this forum. It is subject to archival, 
monitoring or review by, and/or disclosure to someone other than the recipient. 
Our privacy policy is posted on www.printplanet.com
--


+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-
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' Forum today!

Send email to [EMAIL PROTECTED] to find out how!
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-


--
Users of FusionPro Desktop have unlimited free email support. Contact Printable 
Support at [EMAIL PROTECTED]
--
View FusionPro Knowledge Base, FusionPro Samples at
www.printable.com/vdp/desktop.htm

--
You are currently subscribed to fusionpro as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]
--


--
Note:  All e-mail sent to or from this address will be received or otherwise 
recorded by the e-mail recipients of this forum. It is subject to archival, 
monitoring or review by, and/or disclosure to someone other than the recipient. 
Our privacy policy is posted on www.printplanet.com
--



[fusionpro] Re: Font issues

2007-07-31 Thread Alex Marshall
Hello Pete,
Were you able to locate the Fonts.err file?

-Alex

-Original Message-
From: Pete Pickslay [mailto:[EMAIL PROTECTED]
Sent: Tuesday, July 31, 2007 2:53 PM
To: FusionPro Users Forum
Subject: [fusionpro] Re: Font issues


The load is crashing. The log error is 
(Error: An unknown error occurred while load . Font skipped.)
Is there a way to find out what font is causing the problem with out
having to reload all my fonts into font book?

Thank you,
Peter Pickslay


+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+- 
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' Forum today!

Send email to [EMAIL PROTECTED] to find out how! 
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-


--
Users of FusionPro Desktop have unlimited free email support. Contact Printable 
Support at [EMAIL PROTECTED] 
--
View FusionPro Knowledge Base, FusionPro Samples at
www.printable.com/vdp/desktop.htm

--
You are currently subscribed to fusionpro as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]
--


--
Note:  All e-mail sent to or from this address will be received or otherwise 
recorded by the e-mail recipients of this forum. It is subject to archival, 
monitoring or review by, and/or disclosure to someone other than the recipient. 
Our privacy policy is posted on www.printplanet.com
--


+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-
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' Forum today!

Send email to [EMAIL PROTECTED] to find out how!
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-


--
Users of FusionPro Desktop have unlimited free email support. Contact Printable 
Support at [EMAIL PROTECTED]
--
View FusionPro Knowledge Base, FusionPro Samples at
www.printable.com/vdp/desktop.htm

--
You are currently subscribed to fusionpro as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]
--


--
Note:  All e-mail sent to or from this address will be received or otherwise 
recorded by the e-mail recipients of this forum. It is subject to archival, 
monitoring or review by, and/or disclosure to someone other than the recipient. 
Our privacy policy is posted on www.printplanet.com
--



[fusionpro] RE: Do I have to put a supplied pdf into InDesign before using FusionPro?

2007-07-26 Thread Alex Marshall
Hello,
You can you any pdf. Just run the Data Definition Wizard from the FusionPro 
menu to merge your
data file, and the FusionPro menu bar will be available for you to complete 
your variable job.

-Alex

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Thursday, July 26, 2007 12:06 PM
To: FusionPro Users Forum
Subject: [fusionpro] Do I have to put a supplied pdf into InDesign
before using FusionPro?


Can I use a customer supplied pdf directly in Acrobat/FusionPro or do I
HAVE to put that supplied pdf into InDesign first?

+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+- 
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' Forum today!

Send email to [EMAIL PROTECTED] to find out how! 
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-


--
Users of FusionPro Desktop have unlimited free email support. Contact Printable 
Support at [EMAIL PROTECTED] 
--
View FusionPro Knowledge Base, FusionPro Samples at
www.printable.com/vdp/desktop.htm

--
You are currently subscribed to fusionpro as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]
--


--
Note:  All e-mail sent to or from this address will be received or otherwise 
recorded by the e-mail recipients of this forum. It is subject to archival, 
monitoring or review by, and/or disclosure to someone other than the recipient. 
Our privacy policy is posted on www.printplanet.com
--


+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-
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' Forum today!

Send email to [EMAIL PROTECTED] to find out how!
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-


--
Users of FusionPro Desktop have unlimited free email support. Contact Printable 
Support at [EMAIL PROTECTED]
--
View FusionPro Knowledge Base, FusionPro Samples at
www.printable.com/vdp/desktop.htm

--
You are currently subscribed to fusionpro as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]
--


--
Note:  All e-mail sent to or from this address will be received or otherwise 
recorded by the e-mail recipients of this forum. It is subject to archival, 
monitoring or review by, and/or disclosure to someone other than the recipient. 
Our privacy policy is posted on www.printplanet.com
--



[fusionpro] RE: Is CS3 messing with my fonts?

2007-07-24 Thread Alex Marshall
We currently do not support Adobe CS3 in FusionPro.

Please ensure that the font is installed correctly in your system. Then
invoke the load fonts option from within FusionPro and test.

-Alex

-Original Message-
From: Ashley Smith [mailto:[EMAIL PROTECTED]
Sent: Tuesday, July 24, 2007 11:56 AM
To: FusionPro Users Forum
Subject: [fusionpro] RE: Is CS3 messing with my fonts?


You may have to load the fonts in Acrobat again? 

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, July 24, 2007 12:30 PM
To: FusionPro Users Forum
Subject: [fusionpro] Is CS3 messing with my fonts?

I've installed Adobe's CS3 on my computer and now when I use Fusion Pro in
Acrobat 7 my fonts don't preview or compose correctly. It gives me this
error when I compose:
Font Caslon 540 normal style is not loaded, using italic style of this
font family.
The way this software handles fonts is retarded. It's not like I didn't
already have enough font trouble to begin with.

+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-
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' Forum today!

Send email to [EMAIL PROTECTED] to find out how! 
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-


--
Users of FusionPro Desktop have unlimited free email support. Contact
Printable Support at [EMAIL PROTECTED] 
--
View FusionPro Knowledge Base, FusionPro Samples at
www.printable.com/vdp/desktop.htm

--
You are currently subscribed to fusionpro as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]
--


--
Note:  All e-mail sent to or from this address will be received or otherwise
recorded by the e-mail recipients of this forum. It is subject to archival,
monitoring or review by, and/or disclosure to someone other than the
recipient. Our privacy policy is posted on www.printplanet.com
--




+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+- 
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' Forum today!

Send email to [EMAIL PROTECTED] to find out how! 
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-


--
Users of FusionPro Desktop have unlimited free email support. Contact Printable 
Support at [EMAIL PROTECTED] 
--
View FusionPro Knowledge Base, FusionPro Samples at
www.printable.com/vdp/desktop.htm

--
You are currently subscribed to fusionpro as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]
--


--
Note:  All e-mail sent to or from this address will be received or otherwise 
recorded by the e-mail recipients of this forum. It is subject to archival, 
monitoring or review by, and/or disclosure to someone other than the recipient. 
Our privacy policy is posted on www.printplanet.com
--


+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-
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' Forum today!

Send email to [EMAIL PROTECTED] to find out how!
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-


--
Users of FusionPro Desktop have unlimited free email support. Contact Printable 
Support at [EMAIL PROTECTED]
--
View FusionPro Knowledge Base, FusionPro Samples at
www.printable.com/vdp/desktop.htm

--
You are currently subscribed to fusionpro as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]
--


--
Note:  All e-mail sent to or from this address will be received or otherwise 
recorded by the e-mail recipients of this forum. It is subject to archival, 
monitoring or review by, and/or disclosure to someone other than the recipient. 
Our privacy policy is posted on www.printplanet.com
--



[fusionpro] RE: barcode switch Rule

2007-07-20 Thread Alex Marshall
Hello Shane,

Create an empty text rule. Check the box for Treat Return Strings As Tagged 
Text,
then enter the following logic:

barcodeData = Field(Barcode Data);

newBarcodeData = '(' + ReplaceSubstring(barcodeData, '/', '') + ')';

return newBarcodeData; 

Don't forget to change the field name to match your data file.


-Alex

-Original Message-
From: Shane Gillies [mailto:[EMAIL PROTECTED]
Sent: Friday, July 20, 2007 9:54 AM
To: FusionPro Users Forum
Subject: [fusionpro] barcode switch Rule


Our mailing program produces barcodes with  /  as the first and last 
character. This does not translate with the Adv Pnet font, instead I 
need  (  and  ) open and close parenthesis. Can anyone help me with 
a rule that will switch the slash to parentheses?

Thanks in advance!
Shane Gillies
Design Consultant

The Allegan Group
136 Brady Street
Allegan, MI 49010
269.673.5476
Fx 269.673.7329
www.allegangroup.com

concept | marketing | design | print | mailing


+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+- 
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' Forum today!

Send email to [EMAIL PROTECTED] to find out how! 
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-


--
Users of FusionPro Desktop have unlimited free email support. Contact Printable 
Support at [EMAIL PROTECTED] 
--
View FusionPro Knowledge Base, FusionPro Samples at
www.printable.com/vdp/desktop.htm

--
You are currently subscribed to fusionpro as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]
--


--
Note:  All e-mail sent to or from this address will be received or otherwise 
recorded by the e-mail recipients of this forum. It is subject to archival, 
monitoring or review by, and/or disclosure to someone other than the recipient. 
Our privacy policy is posted on www.printplanet.com
--


+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-
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' Forum today!

Send email to [EMAIL PROTECTED] to find out how!
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-


--
Users of FusionPro Desktop have unlimited free email support. Contact Printable 
Support at [EMAIL PROTECTED]
--
View FusionPro Knowledge Base, FusionPro Samples at
www.printable.com/vdp/desktop.htm

--
You are currently subscribed to fusionpro as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]
--


--
Note:  All e-mail sent to or from this address will be received or otherwise 
recorded by the e-mail recipients of this forum. It is subject to archival, 
monitoring or review by, and/or disclosure to someone other than the recipient. 
Our privacy policy is posted on www.printplanet.com
--



[fusionpro] Re: FusionPro for MacPro

2007-07-11 Thread Alex Marshall
Hello Susan,
Fusionpro Desktop versions 3.2 through 4.2 are  not supported in Acrobat 8 on 
the Apple Macintosh platform.
It is still in the development stages and we will announce its availability as 
soon as it is completed.

It is however supported on the PC platform.

-Alex

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Wednesday, July 11, 2007 10:39 AM
To: FusionPro Users Forum
Subject: [fusionpro] Re: FusionPro for MacPro


Sorry! I was given the wrong info. FusionPro runs on the MacPro (Intel).
We have version 3.2 Desktop and it won't work in Acrobat 8.0. Does anyone
know if the 4.0 or 4.1 version works in Acrobat 8.0?

Susan

+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+- 
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' Forum today!

Send email to [EMAIL PROTECTED] to find out how! 
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-


--
Users of FusionPro Desktop have unlimited free email support. Contact Printable 
Support at [EMAIL PROTECTED] 
--
View FusionPro Knowledge Base, FusionPro Samples at
www.printable.com/vdp/desktop.htm

--
You are currently subscribed to fusionpro as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]
--


--
Note:  All e-mail sent to or from this address will be received or otherwise 
recorded by the e-mail recipients of this forum. It is subject to archival, 
monitoring or review by, and/or disclosure to someone other than the recipient. 
Our privacy policy is posted on www.printplanet.com
--


+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-
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' Forum today!

Send email to [EMAIL PROTECTED] to find out how!
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-


--
Users of FusionPro Desktop have unlimited free email support. Contact Printable 
Support at [EMAIL PROTECTED]
--
View FusionPro Knowledge Base, FusionPro Samples at
www.printable.com/vdp/desktop.htm

--
You are currently subscribed to fusionpro as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]
--


--
Note:  All e-mail sent to or from this address will be received or otherwise 
recorded by the e-mail recipients of this forum. It is subject to archival, 
monitoring or review by, and/or disclosure to someone other than the recipient. 
Our privacy policy is posted on www.printplanet.com
--



[fusionpro] RE: DLQueue version

2007-07-09 Thread Alex Marshall
Hello David,
The most current version of FusionPro's DL Queue is version 3.0.6.
As far as this issue you are encountering, this may be specific to the template 
itself.
You may choose to submit this template to us for analysis, whereby we may be 
able to determine
the cause of this specific problem.

-Alex

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Monday, July 09, 2007 1:49 PM
To: FusionPro Users Forum
Subject: [fusionpro] DLQueue version


Here an oldie, but a goodie

We don't use the packaged FusionPro Web storefront that FusionPro
supplies, we use the older DLQueue file submission and program our own
sites. I am wondering if we have the most up-to-date version of this older
software though?

Our problem is this, I am able to create templates that all work correctly
from my desktop, work correctly using FusionPro Server from a command line
I feed it (on both our development and live servers); BUT when we program
our web sites to supply either FusionPro Server with a command line, the
template fails. And suprisingly enough only this template. The other
templates that I've used as samples on how to program, and base templates
for layout and rules, all work correctly.

We have gone back and forth with Printable (Dan Korn), and couldn't get
any formal answer.

I thought that I might have buggered up the template somehow, so I
re-programmed it from scratch, but the same error continues to occur. We
get an error code of -1, which Dan informs us is just a general
postscript error. So no help there.

So, I'm now wondering 1) What is the most current version of DLQueue, and
2) has anyone else had this same situation?

Thanks.

David Sweet
HKM Direct Market Communications

+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+- 
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' Forum today!

Send email to [EMAIL PROTECTED] to find out how! 
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-


--
Users of FusionPro Desktop have unlimited free email support. Contact Printable 
Support at [EMAIL PROTECTED] 
--
View FusionPro Knowledge Base, FusionPro Samples at
www.printable.com/vdp/desktop.htm

--
You are currently subscribed to fusionpro as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]
--


--
Note:  All e-mail sent to or from this address will be received or otherwise 
recorded by the e-mail recipients of this forum. It is subject to archival, 
monitoring or review by, and/or disclosure to someone other than the recipient. 
Our privacy policy is posted on www.printplanet.com
--


+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-
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' Forum today!

Send email to [EMAIL PROTECTED] to find out how!
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-


--
Users of FusionPro Desktop have unlimited free email support. Contact Printable 
Support at [EMAIL PROTECTED]
--
View FusionPro Knowledge Base, FusionPro Samples at
www.printable.com/vdp/desktop.htm

--
You are currently subscribed to fusionpro as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]
--


--
Note:  All e-mail sent to or from this address will be received or otherwise 
recorded by the e-mail recipients of this forum. It is subject to archival, 
monitoring or review by, and/or disclosure to someone other than the recipient. 
Our privacy policy is posted on www.printplanet.com
--



[fusionpro] RE: acrobat 8 and indesign cs3 compatibility?

2007-06-26 Thread Alex Marshall
Hello Shawn,
Our current 4.2p1d version of FusionPro supports Acrobat 8 and Microsoft 
Windows Vista operating system.
Indesign CS3 is not currently supported in this configuration.

Acorbat 8 and Indesign CS3 are are supported on the Apple Macintosh
system. This build is currently in the development stages and is projected
to be released in Q3 of this year.

Hope this information helps.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Tuesday, June 26, 2007 8:49 AM
To: FusionPro Users Forum
Subject: [fusionpro] RE: acrobat 8 and indesign cs3 compatibility?


I'm assuming that Adobe Acrobat 8 is still not supported since I am having
many problems with the Steps and Preview rarely being available in my
palettes menu.

Also, how do I download updates as they become available?

Thanks

 Hello,=20
 
 We currently do not support Adobe Acrobat 8 but this work, as well as
 support for the soon to be released InDesign CS3, is scheduled for this
 year.
 
 We have support for Acrobat 8 on the Windows platform targeted for Q2 of
 this year at this time. =20
 
 InDesign CS3 on both platforms as well the Mac version of Acrobat 8 will
 is targeted for release in Q3.
 
 Hope this helps. =20
 
 --Mark Hilger
   Product Manager
   Printable Technologies, Inc.

+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+- 
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' Forum today!

Send email to [EMAIL PROTECTED] to find out how! 
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-


--
Users of FusionPro Desktop have unlimited free email support. Contact Printable 
Support at [EMAIL PROTECTED] 
--
View FusionPro Knowledge Base, FusionPro Samples at
www.printable.com/vdp/desktop.htm

--
You are currently subscribed to fusionpro as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]
--


--
Note:  All e-mail sent to or from this address will be received or otherwise 
recorded by the e-mail recipients of this forum. It is subject to archival, 
monitoring or review by, and/or disclosure to someone other than the recipient. 
Our privacy policy is posted on www.printplanet.com
--


+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-
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' Forum today!

Send email to [EMAIL PROTECTED] to find out how!
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-


--
Users of FusionPro Desktop have unlimited free email support. Contact Printable 
Support at [EMAIL PROTECTED]
--
View FusionPro Knowledge Base, FusionPro Samples at
www.printable.com/vdp/desktop.htm

--
You are currently subscribed to fusionpro as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]
--


--
Note:  All e-mail sent to or from this address will be received or otherwise 
recorded by the e-mail recipients of this forum. It is subject to archival, 
monitoring or review by, and/or disclosure to someone other than the recipient. 
Our privacy policy is posted on www.printplanet.com
--



[fusionpro] RE: 4.2 issue

2007-06-15 Thread Alex Marshall
Hello Mark,
Did you uninstall your current version before upgrading to FusionPro 4.2p1d?



-Original Message-
From: Mark Hardee [mailto:[EMAIL PROTECTED]
Sent: Friday, June 15, 2007 2:56 PM
To: FusionPro Users Forum
Subject: [fusionpro] RE: 4.2 issue


Lauren:

Please re-read the post - I have upgraded...

Mark Hardee
Director of Digital Services

Mercury Printing
A Consolidated Graphics Company
4650 Shelby Air Drive
Memphis, TN 38118
Plant: 901-345-8480
Direct: 901-462-3464




Lauren Nackoney wrote:
 Mark,

   You need to upgrade to the recent patch of 4.2P1d which will fix this issue.

 -Lauren

 -Original Message-
 From: Mark Hardee [mailto:[EMAIL PROTECTED]
 Sent: Friday, June 15, 2007 2:08 PM
 To: FusionPro Users Forum
 Subject: [fusionpro] 4.2 issue


 It seems that when in preview mode, entering the record number that you
 wish to preview does not function, here...
 MAC OSX
 FP 4.2p1B

 Anyone else?


 Update: Just installed 4.2P1D and am having the same issue?


   

--
Users of FusionPro Desktop have unlimited free email support. Contact Printable 
Support at [EMAIL PROTECTED] 
--
View FusionPro Knowledge Base, FusionPro Samples at
www.printable.com/vdp/desktop.htm

--
You are currently subscribed to fusionpro as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]
--


--
Note:  All e-mail sent to or from this address will be received or otherwise 
recorded by the e-mail recipients of this forum. It is subject to archival, 
monitoring or review by, and/or disclosure to someone other than the recipient. 
Our privacy policy is posted on www.printplanet.com
--


--
Users of FusionPro Desktop have unlimited free email support. Contact Printable 
Support at [EMAIL PROTECTED]
--
View FusionPro Knowledge Base, FusionPro Samples at
www.printable.com/vdp/desktop.htm

--
You are currently subscribed to fusionpro as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]
--


--
Note:  All e-mail sent to or from this address will be received or otherwise 
recorded by the e-mail recipients of this forum. It is subject to archival, 
monitoring or review by, and/or disclosure to someone other than the recipient. 
Our privacy policy is posted on www.printplanet.com
--



[fusionpro] RE: Sheet Numbering in FusionPro

2007-06-12 Thread Alex Marshall
Hello Mike,
From the Imposition box in the Composition menu, you can choose to include the 
page number, etc on the Press Sheet.
FusionPro will number them automatically.

-Alex

-Original Message-
From: Mike McGonagle [mailto:[EMAIL PROTECTED]
Sent: Tuesday, June 12, 2007 1:43 PM
To: FusionPro Users Forum
Subject: [fusionpro] Sheet Numbering in FusionPro


Hello all,

This is probably out there somewhere, but I couldn't find it in the manuals...

Is there a way to number the sheets that are produced as a result of
Imposing a set of pieces? Our pressman was wondering how he might
identify any sheets that get spoiled in bindry for reprinting.

I would imagine that functionality like this would involve the
FPImposer program, but I can't seem to find anything like this in the
program.

Thank you,

Mike McGonagle

--
Users of FusionPro Desktop have unlimited free email support. Contact Printable 
Support at [EMAIL PROTECTED] 
--
View FusionPro Knowledge Base, FusionPro Samples at
www.printable.com/vdp/desktop.htm

--
You are currently subscribed to fusionpro as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]
--


--
Note:  All e-mail sent to or from this address will be received or otherwise 
recorded by the e-mail recipients of this forum. It is subject to archival, 
monitoring or review by, and/or disclosure to someone other than the recipient. 
Our privacy policy is posted on www.printplanet.com
--


--
Users of FusionPro Desktop have unlimited free email support. Contact Printable 
Support at [EMAIL PROTECTED]
--
View FusionPro Knowledge Base, FusionPro Samples at
www.printable.com/vdp/desktop.htm

--
You are currently subscribed to fusionpro as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]
--


--
Note:  All e-mail sent to or from this address will be received or otherwise 
recorded by the e-mail recipients of this forum. It is subject to archival, 
monitoring or review by, and/or disclosure to someone other than the recipient. 
Our privacy policy is posted on www.printplanet.com
--



[fusionpro] RE: Barcodes

2007-05-02 Thread Alex Marshall
Hello TC,


Create an empty text rule and use the following logic:

barcodeData = Field(Barcode Data);

newBarcodeData = '(' + ReplaceSubstring(barcodeData, '/', '') + ')';

return newBarcodeData; 


Change the field name to match your data file.


Regards,
Alex

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Wednesday, May 02, 2007 7:56 AM
To: FusionPro Users Forum
Subject: [fusionpro] Barcodes


Hi,
 I am new to Fusion pro. When I try to add barcode fields from a presorted
list the barcode keeps coming up a numbers. When reviewing the list it
seems that my postal software adds a / at the beginning and end of the zip
code. Is there a word around.

thanks

--
Users of FusionPro Desktop have unlimited free email support. Contact Printable 
Support at [EMAIL PROTECTED] 
--
View FusionPro Knowledge Base, FusionPro Samples at
www.printable.com/vdp/desktop.htm

--
You are currently subscribed to fusionpro as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]
--


--
Note:  All e-mail sent to or from this address will be received or otherwise 
recorded by the e-mail recipients of this forum. It is subject to archival, 
monitoring or review by, and/or disclosure to someone other than the recipient. 
Our privacy policy is posted on www.printplanet.com
--


--
Users of FusionPro Desktop have unlimited free email support. Contact Printable 
Support at [EMAIL PROTECTED]
--
View FusionPro Knowledge Base, FusionPro Samples at
www.printable.com/vdp/desktop.htm

--
You are currently subscribed to fusionpro as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]
--


--
Note:  All e-mail sent to or from this address will be received or otherwise 
recorded by the e-mail recipients of this forum. It is subject to archival, 
monitoring or review by, and/or disclosure to someone other than the recipient. 
Our privacy policy is posted on www.printplanet.com
--



[fusionpro] RE: Table cell centering

2007-04-04 Thread Alex Marshall
Hello Raul,

Try this logic:

JAVASCRIPT RULE THAT RETURNS CONTENT OF FORMATTED TEXT RESOURCE WITHIN A CELL

table_var = 'table columns = 2 alignment = leftcolumn 
width=14200column width=50200'

return table_var + 'rowcellTextcell' + Resource(A).value + '/table';


regards,
Alex Marshall
Application Support
Printable Technologies Inc.
http://www.printable.com



-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Wednesday, April 04, 2007 2:32 PM
To: FusionPro Users Forum
Subject: [fusionpro] Table cell centering


What is the correct tag to center cell data in a table both horizontally
and vertically? I tried the cell margins but I keep getting awkward
results.

--
Users of FusionPro Desktop have unlimited free email support. Contact Printable 
Support at [EMAIL PROTECTED] 
--
View FusionPro Knowledge Base, FusionPro Samples at
www.printable.com/vdp/desktop.htm

--
You are currently subscribed to fusionpro as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]
--


--
Note:  All e-mail sent to or from this address will be received or otherwise 
recorded by the e-mail recipients of this forum. It is subject to archival, 
monitoring or review by, and/or disclosure to someone other than the recipient. 
Our privacy policy is posted on www.printplanet.com
--


--
Users of FusionPro Desktop have unlimited free email support. Contact Printable 
Support at [EMAIL PROTECTED]
--
View FusionPro Knowledge Base, FusionPro Samples at
www.printable.com/vdp/desktop.htm

--
You are currently subscribed to fusionpro as: archive@mail-archive.com
To unsubscribe send a blank email to [EMAIL PROTECTED]
--


--
Note:  All e-mail sent to or from this address will be received or otherwise 
recorded by the e-mail recipients of this forum. It is subject to archival, 
monitoring or review by, and/or disclosure to someone other than the recipient. 
Our privacy policy is posted on www.printplanet.com
--