Is there a way to use .Add_MouseHover() without delay? As I understand it, this is a system delay that can be set in the registry. However, I want to use it in my script without delay when hovering over an element. Until now, I have been using such a solution:
$A = $False
$B.Add_MouseMove( if (!$A) { $Global:A = $True; ... A script to save the world from gladioli ... } )
But of course this is not a serious decision, since resources are spent on moving around the element. Please share your professional decisions on how to get zero delay when hover over an element. Thanks