The font effect of Flash display is different between Chrome browser and IE browser.
Simsun for fonts. Size 12
IE:

Chome:

chrome The font is bold and the display is incomplete.
How to solve?
Simsun for fonts. Size 12
IE:

Chome:

chrome The font is bold and the display is incomplete.
How to solve?
Hello. I did use the system font. But I found that:
If the code is like this.
-----------------------------------------------------------------------
var format:TextFormat = new TextFormat();
format.font = "Simsun";
-----------------------------------------------------------------------
Will cause the fonts displayed by IE and Chrome to be different.
The old version of Chrome, the same font as IE, the new version of Chrome, the font is different.
After changing to this, it becomes the same.
-----------------------------------------------------------------------
var format:TextFormat = new TextFormat();
format.font = "宋体";
-----------------------------------------------------------------------
What caused it? Font settings can't be used in English?
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.