Skip to main content
Version: 7.9

system.gui.isTouchscreenModeEnabled

This function is used in Python Scripting.

Description​

Checks whether or not the running client's touchscreen mode is currently enabled.

Client Permission Restrictions​

This scripting function has no Client Permission restrictions.

Syntax​

system.gui.isTouchscreenModeEnabled()

Parameters​

None

Returns​

boolean - True(1) if the client currently has touchscreen mode activated.

Scope​

All

Code Examples​

Example #1
# This example should be used in the Client Startup Script to check if this client is being run on a touch screen computer (judged by an IP address) and set touchscreen mode.

ipAddress = system.net.getIpAddress()
query = "SELECT COUNT(*) FROM touchscreen_computer_ips WHERE ip_address = '%s' "
isTouchscreen = system.db.runScalarQuery(query %(ipAddress))
if isTouchscreen and not system.gui.isTouchscreenModeEnabled():
system.gui.setTouchscreenModeEnabled(1)