Hi xnihilo,

in the past I have used something like:

Code:
Start:

If Trigger = Pressed then
For CountByte = 0 to 9
Pause 1
If Trigger = NotPressed then Start
Next CountByte
' Trigger is still pressed so do code here........
Endif

End
This approach works well for me, checking the button 10 times at 1ms intervals, and will give you a starting point.

Of course, there is always the PBP Button command...

Hope this helps

Rob