Quick Sign In:  

Forum: Old versions

Topic: Mapping Question for MC6000

This topic is old and might contain outdated or incorrect information.

I am trying to map the Key Lock button on the controller to toggle Key Lock on and off when pressed under normal circumstances and to reset pitch when pressed in combination with the SHIFT KEY. I can get the button to work under one circumstance or the other, but not both. Here is what I have so far.

var '$shift' ? pitch_reset .03% : key_lock

Using that command the button will perform the SHIFT function correctly, but does nothing when pressed normally. I believe my error lies somewhere in the VAR part of the script, but I could be wrong.

Advice?
 

Posted Sun 31 Aug 14 @ 11:52 pm
djdadPRO InfinityDevelopment ManagerMember since 2005
Try ..

var '$shift' ? pitch_reset 3% : key_lock
or
var 'shift' ? pitch_reset 3% : key_lock

If none of the above works, try to change the SHIFT button to ..
set '$shift' 1 while_pressed & set 'shift' 1 while_pressed & wheel_mode 'browser' while_pressed
 

Posted Mon 01 Sep 14 @ 1:53 am
Haha... The devil was in the fact that I did not have the % as a whole value. Was looking for a very slow reset, but 1% will work!

Very new to this mapping stuff, so I am actually kinda surprised it was such a small detail. Was able to get everything else I want done so far; this one was a thorn in my side. Thanks so much for the help.
 

Posted Mon 01 Sep 14 @ 2:50 am


(Old topics and forums are automatically closed)