Lisa, When you only see the upper case E, are you previewing? If so, then you must have your 'vertical text inset' set to zero. You cannot see the accent because it's above the frame. If you compose, you'll see the accent because it includes the accent that falls outside of the frame.
-Lauren -----Original Message----- From: Lisa Brooks [mailto:[EMAIL PROTECTED] Sent: Monday, June 23, 2008 2:24 PM To: FusionPro Users Forum Subject: [fusionpro] RE: Returning an accent mark using all caps rule Thanks Lauren. I did try the entity listed in the Tags Guide at first and it did not work. I just tried again and received the same result. I made sure that I had "return strings as tagged text" marked. I set my rule up as follows: If(Field("Name") == "Jose LastName") return "JOS" + 'É' + " " + "LastName"; else return Rule("NameAllCaps"); I confirmed that the entry in my datafile lists "Jose" without the accent before I entered it into the rule. My rule gets validated and I am able to save it but when I preview I just get an uppercase "E" with no accent mark.... Thanks. Lisa Brooks Brooks Litho & Digital Group -----Original Message----- From: Lauren Nackoney [mailto:[EMAIL PROTECTED] Sent: Monday, June 23, 2008 3:03 PM To: FusionPro Users Forum Subject: [fusionpro] RE: Returning an accent mark using all caps rule Lisa, FusionPro most definitly supports upper-case letters with accents. There is a file called entity.mac.def that was installed on your computer and in it is a list of entities. The entries in the far-left column are what you want to put in your rule to return the accented character. Also in your rule, you'll need to have the 'return strings as tagged text' checkbox turned on. If you need more help with entities, there is a whole section on them in the Tags Reference Guide. Good luck. -Lauren -----Original Message----- From: Lisa Brooks [mailto:[EMAIL PROTECTED] Sent: Monday, June 23, 2008 1:56 PM To: FusionPro Users Forum Subject: [fusionpro] RE: Returning an accent mark using all caps rule Thanks Chris. I tried this but unfortunately I'm going the other way - UpperCase - not lowercase. Even when I change this in this rule it's giving me the "E" without the accent mark. I guess Desktop just doesn't like UpperCase accents.... I'm going to keep trying these suggestions....It's just killing me that I'm doing all this work for one record out of the 500 I'm composing. Lisa Brooks Brooks Litho & Digital Group ________________________________________ From: Chris Boehm [mailto:[EMAIL PROTECTED] Sent: Monday, June 23, 2008 2:07 PM To: FusionPro Users Forum Subject: [fusionpro] RE: Returning an accent mark using all caps rule Lisa, This is what I use. switch (Field("NAME").toLowerCase()) { case "Angela RenÈe Conley".toLowerCase(): return "Angela Ren" + Chr (233) + "e Conley"; case "Ana Priscila ThomÈ-Hamilton".toLowerCase(): return "Ana Priscila Thom" + Chr (233) + "-Hamiltonn"; case "Bethany Lee SolÈr".toLowerCase(): return "Bethany Lee Sol" + Chr (233) + "r"; default: return Field("NAME"); } Not sure if this is the best way, but it works for me. Hope this helps ~Chris On Jun 23, 2008, at 1:56 PM, Lisa Brooks wrote: +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+- FusionPro 5.0 Now Available! Variable text on a curve and soft drop-shadows for variable text LIMITED TIME upgrade offer of $299 per license for current customers: http://fusionpro.printable.com/store/upgrade New licenses available for $599 each at: http://fusionpro.printable.com/store/ All FusionPro 5.0 customers to receive FusionPro 5.1 with Adobe Acrobat 8 and InDesign CS3 support when released for FREE. +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+- -- 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 5.0 Now Available! Variable text on a curve and soft drop-shadows for variable text LIMITED TIME upgrade offer of $299 per license for current customers: http://fusionpro.printable.com/store/upgrade New licenses available for $599 each at: http://fusionpro.printable.com/store/ All FusionPro 5.0 customers to receive FusionPro 5.1 with Adobe Acrobat 8 and InDesign CS3 support when released for FREE. +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+- -- 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 --
