On Jun 20, 2007, at 8:15 PM, Rob Robertson wrote:

When I output from BCC, Using FusionPro or Word and the ID Automation
Font that FusionPro comes with does not work. If I change to the
USPS4CB.ttf font, I get a visible font.

This is the expected behavior. Instead of '2','1','3', and '0' the ID Automation Font uses, the USPS4CB font uses 'D','A','T' and 'F', respectively, to represent the bars.

If you wish to use BCC OneCode encoding and the ID Automation font together with FusionPro, there is a way. What you need to do is write a JavaScript Rule.

var onecode = "FATD"; //Replace "FATD" with Field ("YourOneCode")
  onecode = onecode.replace(/F/g,"0"); // replaces all F with 0
  onecode = onecode.replace(/A/g,"1"); // replaces all A with 1
  onecode = onecode.replace(/T/g,"3"); // replaces all T with 3
  onecode = onecode.replace(/D/g,"2"); // replaces all D with 2

  return onecode;

This will allow you to use the font and software you wish to use in conjunction with FusionPro.

-- 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
--

Reply via email to