tracked down to this page: link text
and as you see all the “Description” places just left white.
what i want to implement is hold a key for a specific time to trigger something after.
holding ‘Q’ key for 3 seconds to make character performs a special movement, for example.
this is how i do:
1)i bind action to Q key for doing this and select IE_Repeat Input type.
2)record the moment pressed ‘Q’ through GetTicks() method.
3)record the moment released ‘Q’ through GetTicks() method.
4)subtract the twos i got length for holding time.
5)compare holding time to 3 secs, if >= then trigger my event.
but the result is someway weird. i think i might get misunderstand on the meaning or usage for IE-Repeat.