Multiple touch screens - touch

I have 4 Dell 2314t screens connected to a HP ProDesk 600 G1 SFF. 2 screens are connected to the internal 2 display port connections. the 2nd two are connected to a 2nd graphic card with 2 display ports. When extending the screens to all four screens the touch from screen 1 and 2 are registered only on screen one. The same on screen 3 and 4, only on screen 3. Is there a third party application which can handle this. I want the touch individually on each screen connected to 1 PC? Or is it absolutely necessary to have a graphic adapter with four connections in?

The Solution was this.
1.Go to Control Panel and search for "Touch".
2.Click "Tablet PC Settings"
3.Click "Setup..." to the right of "Configure your pen and touch displays"
4.Choose "Touch Input..."
5.Hit the "Enter" key until you see the instructions appear on your actual touch monitor. Touch the screen and it will say something like "Hit enter to move to the next step".

Related

How to automatically move between page and functions in kiosk mode?

I need to automatically navigate between my app pages and functionalities during kiosk mode. The usage context is an exhibition in which I like to put a smartphone on a stand to show people all features in an infinite cycle.
The idea is to use kiosk_mode package to put device in kiosk mode, then we need the automation to navigate between pages, tap buttons and show functionalities for some time.
So now we need to implement the navigation and the button taps like a test, for example:
Navigate page 1
Wait 5 seconds
Navigate page 2
Tap button x and the button y
Wait 5 seconds
etc..
Does it exist any package that automate that flow with a fluent API? Does it exist any advised pattern?
Else the idea is to simply create an async scope that starts and made all the steps in a custom way.

Mobile Accessibility : Focus moves to address bar on radio button, checkbox and button click on IOS 12.1.4 + voice over

After updating IOS version to 12.1.4, focus moves to address bar on radio button click.It's working fine on OS V-12.0.1.
Steps:
go to https://www.w3schools.com/html/tryit.asp?filename=tryhtml_radio
Enable the voice over.select male radio button then move focus to female radio button and select female radio button.Focus moves to address bar after selecting female radio button.
Focus moves to address bar when second radio button gets selected.
same behavior can be observed on https://www.accessibilityoz.com/forms/mobile-app-accessibility-audit-request/.
same behavior observed with checkbox and button click event.
I tried to fix it by keeping focus on radio button on click event using javascript but after 1 second focus moves back to address bar.
This is working fine on windows + NVDA ,mac + VO, android + talkback.
I am having this issue of VO jumping to either the address bar or to the "Reader" button on most websites in Safari. I am running iOS 12.1.4 on a new iPhone XR. I took my iPhone to the Apple Store and they couldn't figure it out wither, so they replaced my iPhone with a new one, but the issue persists! This doesn't happen in Google Chrome on my iPhone, so my temporary workaround is to use the GMail app instead of Apple Mail. This way, when I click on a link within an email message, it opens in Google Chrome instead of Safari. I am reporting this bug to Apple Accessibility.

iPhone app with a 'Left' nav.

I've been asked to create an iphone app with a left nav/menu. Since there are no native UI components to use for this, I was wondering what would be the best way to achieve this. The only app that I remember that had this kind of thing was the Facebook app from about 18months ago.
Is there a good 3rd party API to handle this kind of thing?
Description of the left nav: There is a permanent left nav along the left of the screen running the full length of the screen. When the user selects a menu option a UIView/UIViewController slide in from the right side and covers over the menu. A little button is left stuck to the left side of the screen. If the user selects this button the view slides back to the right again, and the leftnav menu appears from underneath the view and it is possible to interact with again.
Where is the problem? just create a UIView with subview containing UIButtons, you have to layout the buttons yourself (calculate the frame). Later you add that leftmenuView to the UiViewCobtroller.

Go to Display Button Factorytalk View ME?

I’m using Factor Talk View ME to program AB PanelView 1000 HMI and I can’t figure out how to program a button to activate “manual” mode and then goto a display directly after button is pushed. I can set them up individually with two separate buttons, but wasn’t sure if this can be done in one button?
You have 2 types of buttons:
For navigation
For setting values (in plc or HMI tags). for your activated "manual" mode I guess?
I don't think you can do both with one button in ME(in FT View SE you can), however a solution can be to use a macro:
1 Create a new "Logic and control" => macro
2 Set your value in order to activate your "manual" mode
4 Create your button in order to display your screen
5 On your displayed screen, go to display setting => behaviour
6 Add your freshly created macro in Macro > startup field.
Is it what you expect ?

iPhone and iPad wordpress menu BAD behavior

On this site : mecanomedic.com, the menu template work fine in "normal" desktop browser, but dont slide down on ipad-iphone device. What can be the problem ?
Some tell me it's a css problem, but HOW safari desktop work ?
The problem is that the menu expansion relies on the user hovering with a mouse. On touch devices like iPads & iPhones, the hovering gesture can't be replicated because there's only one input- touch. If I were you, I'd take a look at Twitter's Bootstrap menu setup and perhaps use media queries to serve up a different menu on smaller screen sizes.
Here's an example of a Bootstrap navigation bar in action (you'll have to inspect the code to see how it works).
Add a href to the top-level <a>'s so that they can be focusable:
Produits
Elements that are focusable receive mouse events and hover styles when the user taps on them.
As #Matt stated, the problem is that your menu relies on a hover event and unfortunately that event is unavailable on touch screen devices.
One way to fix this would be to:
Check if the current user's device is an iOS device
If the device is an iOS device, use javascript to trigger a menu item's "show event" when the menu button is CLICKED instead of ROLLED OVER / HOVERED.
This would result in the menu being shown when the user taps a menu button.