View Single Post
06/11/14, 01:41 PM   #2
Sasky
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 231
You're trying to reference a function called OnKeyDown() but your function is named BindingTest.OnKeyDown()

Try
xml Code:
  1. <Bindings>
  2.   <Layer name="General">
  3.     <Category name="Test">
  4.       <Action name="TOGGLE_TEST">
  5.         <Down>BindingTest.OnKeyDown()</Down>
  6.       </Action>
  7.     </Category>
  8.   </Layer>
  9. </Bindings>
  Reply With Quote