The value is never reset within the running session,
so you can retrieve it even hours after the last menu was clicked. Is there any way to manually reset that in user script?
The value is never reset within the running session,
so you can retrieve it even hours after the last menu was clicked. Code: Select all
$modKey = <get trigger callshift>;
if ($modKey == 1) { e "shift"; }
elseif ($modKey == 2) { e "ctrl"; }
elseif ($modKey == 4) { e "alt"; }
else { e "none"; }
$Shift = (get("Trigger", "callshift") == 2) ? "1" : "0"; and several times got false results >> while searching for possible issue in help i stumbled upon the notice: value is never reset within the running session >> leading me to think it was a source of an issue.(i stopped even thinking there was smth else)