実践KSP

オンスクリーン・キーボードの色付け

on init
{1}
set_key_color (60,$KEY_COLOR_RED)
{2}
declare $kc1
$kc1 := 0
while ($kc1 < 128)
set_key_color ($kc1,$KEY_COLOR_WHITE)
inc ($kc1)
end while
{3}
declare $kc2
$kc2 := 38
while ($kc2 < 82)
set_key_color ($kc2,$KEY_COLOR_BLUE)
inc ($kc2)
end while
end on