Forum Replies Created
- AuthorPosts
- 30/04/2020 at 21:34 #14208
Samuel Engelman
ParticipantI’m facing the same issue. In my case, I don’t think it’s the Global Interactor. To keep it simple, I have an application with many gaze aware buttons and controls. I want to allow the user to look at a section of the screen and have it pop up a settings panel. I also need a virtual window over the main part of the screen to help manage this functionality.
I am able to it all except for the problem that once I create the virtual window that covers the main part of the application, it blocks any other control from registering gaze. I tried setting the nonOccluding property to true and it doesn’t seem to make any difference.07/01/2020 at 00:47 #13763Samuel Engelman
ParticipantAny updates on this? I’m experiencing this on one of my machines.
27/10/2019 at 17:18 #12173Samuel Engelman
ParticipantWas any progress made on this? I’m facing the same issue.
19/01/2018 at 15:24 #7815Samuel Engelman
ParticipantI have the EyeTracker 4C.
18/01/2018 at 15:27 #7813Samuel Engelman
ParticipantNo progress. I’m out if ideas what to try. I don’t want to install my device tools since I won’t have them in the machines I will be distributing the application to.
31/12/2017 at 18:55 #7754Samuel Engelman
ParticipantI tried it with the sample Interaction_Interactors_102. It worked well on the dev machine. On the deployment machine, the tentative focus works but not the activated.
31/12/2017 at 18:46 #7753Samuel Engelman
ParticipantEye tracking is performing well.
I forgot to mention that the core software on the development machine is 2.10.20 and on the deployment machine it’s 2.11 (the latest).
I’ll try the samples.
31/12/2017 at 03:26 #7749Samuel Engelman
ParticipantThe Core software is installed.
Before I post my whole project, I’ll try posting the relevant lines of code.
In my xaml file:
<Setter Property="tobii:Behaviors.IsTentativeFocusEnabled" Value="True"></Setter> <Setter Property="tobii:Behaviors.IsActivatable" Value="True"></Setter> <EventSetter Event="tobii:Behaviors.ActivationFocusChanged" Handler="Button_Action_HasActivationChanged" /> <EventSetter Event="tobii:Behaviors.Activated" Handler="Button_Action_Activated" />
In my code behind:
public void Button_Action_HasActivationChanged(object sender, ActivationFocusChangedRoutedEventArgs e) public void Button_Action_Activated(object sender, ActivationRoutedEventArgs e)
The first event is firing on the deployment machine but the second isn’t. On the dev machine, both in debug mode and not, both events are firing.
- AuthorPosts