If you need to verify when a key is pressed and when it is released, you can do it by storing a flag (sprite flag or global counter) somewhere. Here is some pseudo rule code:
If IsInputPressed (initial = false, button = button 1)
Then keyIsDown = 1 (set a flag)
End if
If keyIsDown == 1
And not IsInputPressed (initial = false, button = button 1)
Then keyIsDown = 0 (reset the flag)
And accomplish your action because the key was just released
End if
There you go.