Page 1 of 1

Disable CTRL

PostPosted: Fri Jul 17, 2009 7:46 am
by Jim2001
How can I disable the CTRL function. I'd like it so if someone holds the CTRL key, it just acts like they are not holding it at all (should act like a regular click without keys).

PostPosted: Sat Jul 18, 2009 10:15 am
by John Sindelar
No problem. Edit the script "NinjaCal ( action ; params )" and find the line that looks like this...

Else If[( Get( ActiveModifierKeys ) = 2 ) or ( Get( ActiveModifierKeys ) = 4 )]

...and change that to this...

Else If[( Get( ActiveModifierKeys ) = 2 ) or ( Get( ActiveModifierKeys ) = 4 ) and 1 = 2]

..but adding "and 1=2" without quotes to the end of the line. That "switch" will turn off the line.

That's it.