Here's a little tip for Linux and Windows users (I'm sure there's a way for Mac users as well - I just don't have a Mac) - if you want to see the stroke order in the review screen and in most other places on this site, you can set up font substitution for the font Hiragino Minch Pro. The downside of this is that any document using Hiragino Mincho Pro will be viewed using the KanjiStrokeOrders font, but that's fine for me - I don't have Hiragino (a mac font from what I've seen).
First, you have to install the KanjiStrokeOrders font, found here: http://www.nihilist.org.uk/
On Linux (I use gentoo, but it should work with any distribution that uses fontconfig), put the following snippet in a file and save the file as /etc/fonts/conf.d/30-jap.conf (your path may vary)
On Windows (w2k and newer I think), this is done through the registry - save the following snippet as "order.reg" and double-click it (or edit the registry manually using regedit):
First, you have to install the KanjiStrokeOrders font, found here: http://www.nihilist.org.uk/
On Linux (I use gentoo, but it should work with any distribution that uses fontconfig), put the following snippet in a file and save the file as /etc/fonts/conf.d/30-jap.conf (your path may vary)
Code:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE fontconfig SYSTEM "../fonts.dtd">
<fontconfig>
<alias binding="same">
<family>Hiragino Mincho Pro</family>
<accept>
<family>KanjiStrokeOrders</family>
</accept>
</alias>
</fontconfig>Code:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\FontSubstitutes]
"Hiragino Mincho Pro"="KanjiStrokeOrders"