Mouse phantom click supression

Hi,

neeed help.

My mouse has phantom clicks. When I press Button 3, sometime it triggers 2 clicks instead of 1. How can I supress second click during specific time, e.g. 100 ms?

Currently I have event to Button 3 → minimize window under the Mouse cursor. But it triggers minimazing of two windows time to time.

Thank you

after your minimize window under cursor action you can add a "ignore / disable trigger actions for X seconds" action.

Seems, it works. Thank you Andreas.

Seems, I hurried up. I still experience this issue. Any other thoughts? Here is what I’ve setup:

And also, what I i’ve just noticed, that when I use Button 3 it hides current window and sends “back” event to the next window (chrome backward), so, it disabled BTT action, but didn’t disabled button origin action.

There might be an easier way to do this but you can use a custom variable with an “if condition”.
This will do nothing if you have already pressed the button in the past 0.3s:

For this to work the value of the variable needs to already be "0" so:

  • Create a temporary trigger with the action “Assign/Set Value for Variable"
  • Make the Variable Name “TEST” and the Value "0"
  • Use the trigger once

You also need to enable the “Persist (keep when BTT is quit)” option in your final "button 3" trigger for the "Set value: “0”" action. (So you don't have to redo this every time)

(You can give the variable the name you want, you also don’t have to use 0 and 1 as values, you can use ON and OFF or anything that makes sense to you)