2009年3月26日 星期四

Flash的亂碼…搞定了~!!!

參考: Flash的亂碼…我搞定了~!!!

sudo mv /etc/fonts/conf.d/49-sansserif.conf /etc/fonts/conf.d/49-sansserif.conf.back
&& sudo gedit /etc/fonts/conf.d/49-sansserif.conf

貼加以下內容後存檔→fx重開



<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>

<!--
If the font still has no generic name, add sans-serif
-->
<match target="pattern">
<test qual="all" name="family" compare="not_eq">
<string>sans-serif</string>
</test>
<test qual="all" name="family" compare="not_eq">
<string>serif</string>

</test>
<test qual="all" name="family" compare="not_eq">
<string>monospace</string>
</test>
<edit name="family" mode="append_last">
<string>文泉驛正黑</string>
</edit>

</match>


</fontconfig>