Page 1 of 1

Feature *Gaze auto off when moving mouse.

Posted: Fri Mar 10, 2017 4:38 pm
by Harro
Hello

Is it possible to at a feature that will auto turn off gaze for a X amount of seconds when moving the mouse.
This will allow for very minimal mouse movements only when Gaze isn't accurate enough. Same could apply in FPS VIEW mode.

greetings Harro

Re: Feature *Gaze auto off when moving mouse.

Posted: Thu Mar 16, 2017 3:34 pm
by Xcessity
You can try to solve this via a macro. Toggle the gaze key for x seconds to turn off/on gaze movement of the mouse cursor.

Re: Feature *Gaze auto off when moving mouse.

Posted: Fri Mar 17, 2017 4:41 pm
by Harro
any macro wizards in here that know how to do this ? :>

Re: Feature *Gaze auto off when moving mouse.

Posted: Sat Mar 18, 2017 5:21 pm
by Zathras
Harro wrote:any macro wizards in here that know how to do this ? :>
I can give it a go... What key are you using for gaze toggle?

Another way to do it though is to assign the gaze toggle key to an eye blink. Then you would just wink whenever you wanted gaze off.

Re: Feature *Gaze auto off when moving mouse.

Posted: Sun Mar 19, 2017 2:19 pm
by Harro
Zathras wrote:
Harro wrote:any macro wizards in here that know how to do this ? :>
I can give it a go... What key are you using for gaze toggle?

Another way to do it though is to assign the gaze toggle key to an eye blink. Then you would just wink whenever you wanted gaze off.
Thanks allot for giving it a shot.

I am using the f10 key for gaze activation. Eye blinks for me have the tendency to activated at random so that won't really work for me :(.

Thanks in advance hope you can make it work !

Greetings Harro.

Re: Feature *Gaze auto off when moving mouse.

Posted: Sun Mar 19, 2017 5:45 pm
by Zathras
Harro wrote:Eye blinks for me have the tendency to activated at random so that won't really work for me :(.
You could try increasing dwell time to prevent accidental activation. I have that problem if I use my right eye for some reason, bumping dwell to like 5 or 6 hundred usually helps me.

Anyway, here is the macro. This will turn on gaze then turn it off after 5 seconds. You can change the 5000 value if you want it to last longer...

Code: Select all

  <MACRO id="MomentaryGaze">
    <MAIN>
      <KEYINPUT behaviour="PRESS" type="VIRTUAL_CODE" code="0x79"/>     
      <KEYINPUT behaviour="RELEASE" type="VIRTUAL_CODE" code="0x79"/>
	  <WAIT time="5000"/>
      <KEYINPUT behaviour="PRESS" type="VIRTUAL_CODE" code="0x79"/>     
      <KEYINPUT behaviour="RELEASE" type="VIRTUAL_CODE" code="0x79"/>
    </MAIN>
  </MACRO>
Make sure "Stop macro on deactivation" is unchecked or gaze will just stay on.

Hope that works for you...