M32:ifholdkey
ifholdkey <KEY_SC>
This command will branch if the key specified by the scancode has been activated, or take the 'else' branch otherwise.
Unlike ifhitkey, ifholdkey does not affect the status of the key after the block is exited.
See also: ifhitkey
Usage:
ifholdkey KEY_F { // do stuff if key active } else { // do stuff if key inactive } // key status is unchanged