Feature *Gaze auto off when moving mouse.

Post Reply
Harro
Posts: 33
Joined: Tue Sep 29, 2015 2:53 pm

Feature *Gaze auto off when moving mouse.

Post 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
User avatar
Xcessity
Site Admin
Posts: 284
Joined: Sat May 16, 2015 2:23 pm
Location: Graz
Contact:

Re: Feature *Gaze auto off when moving mouse.

Post 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.
Harro
Posts: 33
Joined: Tue Sep 29, 2015 2:53 pm

Re: Feature *Gaze auto off when moving mouse.

Post by Harro »

any macro wizards in here that know how to do this ? :>
Zathras
Posts: 68
Joined: Thu May 21, 2015 4:09 pm
Location: NY

Re: Feature *Gaze auto off when moving mouse.

Post 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.
Harro
Posts: 33
Joined: Tue Sep 29, 2015 2:53 pm

Re: Feature *Gaze auto off when moving mouse.

Post 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.
Zathras
Posts: 68
Joined: Thu May 21, 2015 4:09 pm
Location: NY

Re: Feature *Gaze auto off when moving mouse.

Post 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...
Post Reply