![]() |
Special Characters Included in Both MacRoman Encoding and Latin-1 Encoding
Original post removed to reduce confusion. Please follow Dan's post below.
|
Re: Special Characters Included in Both MacRoman Encoding and Latin-1 Encoding
This is a corrected version of the post above, in which all of the entities got converted to their actual character values by the "helpful" vBulletin forum software. :( (This is ironic, considering that the whole point of the post is to explain how to use the entities themselves in JavaScript.)
Please use [code] and [/code] tag pairs when including code samples to avoid this problem. You may also need to use [noparse] and [/noparse] tag pairs to ensure that markup is shown literally in the forum. (Note that for the numeric entities such as ¼ the only way I could get vBulletin to show the entity literally instead of parsing it and showing the Ľ character was to "fake it out" by modifying the size or colors of some, not all, of the characters in the entity itself.) Don't be afraid to use the "Preview Post" button or edit your post to make sure the code looks right. Thanks! CORRECTED POST FOLLOWS Since almost all glyphs used in Western languages are included in both the Latin-1 encoding character set used on Windows, and in MacRoman on Mac, so FusionPro has no problem with them. However, in the great Tower of Babel that is character encoding, a few characters that are standard in Latin-1 (aka ISO-8859-1) fell through the cracks and did not get included in MacRoman encoding, including the fractional characters in question. The full list of such characters can be found here: http://www.alanwood.net/demos/charsetdiffs.html#d and here: http://home.earthlink.net/~bobbau/platforms/specialchars/#non-mac And there's some historical background here: http://ppewww.ph.gla.ac.uk/~flavell/iso8859/iso8859-mac.html and here: http://meta.wikimedia.org/wiki/Help_talk:Special_characters FusionPro does not include the fractional entities ("¼", "½", and "¾") in its entity.mac.def file, and you can't use numeric entities (such as "¼") either, because those characters are simply not mapped to any 8-bit ASCII values in Mac Roman encoding. The named entities will still work on Windows, however, and since you're doing the actual composition there, the real issue is how to represent and specify these characters on Mac. My recommendation is to use JavaScript to create rules that return entities designating the actual glyphs on Windows and substitute representations on Mac. You still won't be able to type them directly into the Text Editor, but you'll get the actual character symbol in your composed output on Windows, and an approximate representation on Mac. For instance, you could create a rule called "Fraction 1/4" like so: Code:
in the Rule Editor.) The exact representation obviously depends on your superscript and subscript settings in the Paragraph Globals dialog on Mac. And superscript may affect your auto-leading. If you don't want to worry about this, you can simply return the string "1/4" on Mac. If you can find a symbol font that shows the character in MacRoman encoding, you can also do a simple font substitution with a numeric entity. I haven't found such a font, but if you do, you could do something like this instead: Code:
if (FusionPro.isMac) Code:
Here's a generalized solution: Code:
function FractionCharacter(fraction) Using this function, you can create rules with names like "Fraction 1/4", and insert the corresponding variables in the Text Editor on either platform. If another solution becomes available in the future, or you want to try something different, you will only have to modify that single function. |
Re: Special Characters Included in Both MacRoman Encoding and Latin-1 Encoding
I have been trying to add a square bullet using a script in front of a field using;
if (Field(“Certification 1”) == ""){ return ""; }else{ return "<p>◻" + Field(“Certification 1”) + "</p>"; }* Is this format not supported? I'm still learning javascript & I may be a little lost with this. |
Re: Special Characters Included in Both MacRoman Encoding and Latin-1 Encoding
Quote:
|
All times are GMT -7. The time now is 10:08 PM. |
Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2021, Jelsoft Enterprises Ltd.
(c) 2011, PTI Marketing Technologies™, Inc.