Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Támogatás keresése

Kerülje el a támogatási csalásokat. Sosem kérjük arra, hogy hívjon fel egy telefonszámot vagy osszon meg személyes információkat. Jelentse a gyanús tevékenységeket a „Visszaélés bejelentése” lehetőséggel.

Learn More

A témacsoportot lezárták és archiválták. Tegyen fel új kérdést, ha segítségre van szüksége.

Greek letters don't display anymore when I use fontname-"Symbol" in html/javascript. They work in Microsoft Edge.

  • 5 válasz
  • 1 embernek van ilyen problémája
  • 1 megtekintés
  • Utolsó üzenet ettől: john02813

more options

I am writing code in javascript for astronomers and it uses symbol font for Greek letters. When I display the report on FireFox browser, the Greek letters do not appear instead they are in a different font. My report display fine with Microsoft Edge but I like FF better.

I am writing code in javascript for astronomers and it uses symbol font for Greek letters. When I display the report on FireFox browser, the Greek letters do not appear instead they are in a different font. My report display fine with Microsoft Edge but I like FF better.

Kiválasztott megoldás

Fonts like the Symbol font that map on the basic ASCII set may not work in Firefox.

It is best to always use the Unicode representation of characters to avoid font problems because in that case any font that supports those symbols can be used and it works on all platforms if you have a font that covers that Unicode range.

See also:

Válasz olvasása eredeti szövegkörnyezetben 👍 0

Összes válasz (5)

more options

Type about:preferences#content<enter> in the address bar. Across from fonts and colors, press the Advanced button. On the bottom, turn on Allow Web Sites To Choose Their Own.

Fonts Information - Detected via Flash http://browserspy.dk/fonts-flash.php?detail=1

more options

I followed your instructions but there was no allow web sites instead it said allow pages to choose their own fonts

more options

Kiválasztott megoldás

Fonts like the Symbol font that map on the basic ASCII set may not work in Firefox.

It is best to always use the Unicode representation of characters to avoid font problems because in that case any font that supports those symbols can be used and it works on all platforms if you have a font that covers that Unicode range.

See also:

more options

I used the code for Greek letters instead of the letter and using Symbol font. It works ok but now I have to change all the thousands of letters in my data to create that special unicode.

more options

I used javascript/canvas to display my Greek letters. I used if (Mid(AA[x],5,6)=="a"){context.fillText(Left(AA[x],4) + "\u03B1" + Right(AA[x],30),1,12);} In other words I broke up the text data into sections where I could convert the letter in Mid(AA[x],5,6) to a Greek letter when it is time to display on the screen. That way the letter stays normal in the data section.