MIDP Version: 2.0
Description: lcdui.font example script. Note that the example applet doesn't seem to have that many different fonts. Last updated: Sun Oct 19 10:07:23 +0000 2008 by
davidw
set form [lcdui.form -title "Font examples"]
$form setcurrent
foreach f [sort [lcdui.font names]] {
set s [lcdui.stringitem -text $f]
$s configure -font $f
$form append $s
}