Friday, November 22, 2024 5:44:27 PM

Inteset Secure Lockdown v2 - Internet Explorer Edition - Diable pinch zooming in Kiosk mode

10 years ago
#2109 Quote
I have Inteset Secure Lockdown v2 - Internet Explorer Edition installed on a kiosk using Windows 8. In  kiosk mode users can use a pinch gesture to zoom the page.  How can I disable that?
0
10 years ago
#2113 Quote
Depending if your computer supports it, try this:

1. Go to the Control Panel.
2. Search up Mouse on the (search control panel bar on the top right)
3. Click Mouse Settings
4. Select the Device Settings tab.
5. Click Settings for the touch pad that your connected to.
6. You will see a list of items, click Scrolling.
7. Click Pinch Scrolling
8. Disable Pinch Zoom
0
10 years ago
#2129 Quote
No device settings tab as there isn't a touch pad on the computer (MacMini running Windows 8) and installed in a touch screen kiosk.
0
10 years ago
#2130 Quote
The Pinch to Zoom feature found on touch devices use manufacturer specific drivers. Look to your manufacture of the device to see how to disable the feature. Also, this feature can easily be disabled via CSS code in your web application if you have access to that. For example:

body
{
   /* Block area from manipulation actions (zoom, pan) */
  -ms-touch-action: none;
}
0