Curl Global Community
KeyPress.value は Keycode.value ではない? - Printable Version

+- Curl Global Community (https://communities.curl.com)
+-- Forum: Discussions (https://communities.curl.com/forumdisplay.php?fid=1)
+--- Forum: General Curl questions (https://communities.curl.com/forumdisplay.php?fid=2)
+--- Thread: KeyPress.value は Keycode.value ではない? (/showthread.php?tid=353)



KeyPress.value は Keycode.value ではない? - umemura - 11-28-2011

KeyPress の値を比較しようとしても思い通りの比較ができていなかったのですが、
Keycode ではなく、 KepPressValue を使うことで正しく比較できました。

Code:
{frame.add-event-handler
        {on kp:KeyPress do
            {if kp.value == KeyPressValue.tab then
             {output "KeyPressValue.tab"}
            }
            {if kp.value == Keycode.tab.value then
                ||このif文には入らない
             {output "Keycode.tab.value"}
            }
        }
    }