Enable Touch Keyboard
Purpose
Enables or disables the touch keyboard.
See also
Format
Enable Touch Keyboard [On/Off/Toggle]
Options
•On enables the touch keyboard.
•Off disables the touch keyboard.
•Toggle switches between enabling and disabling the touch keyboard.
Compatibility
Where the script step runs | Supported |
FileMaker Pro | Partial |
FileMaker Server | No |
FileMaker Go | Yes |
Custom Web Publishing | No |
FileMaker WebDirect | No |
Runtime solution | Partial |
Originated in
FileMaker Pro 14.0
Description
Use this script to enable or disable the touch keyboard in FileMaker Go or Windows. Enable Touch Keyboard is used only for fields; it has no impact on the touch keyboard for dialog boxes.
You can use the
Get(TouchKeyboardState) function to check the current setting of the touch keyboard.
Notes
•This script step is not supported in FileMaker Pro for Windows 7.
Example 1
In FileMaker Go, enables the touch keyboard.
Enable Touch Keyboard [On]
Example 2
Checks the current setting of the touch keyboard and disables the touch keyboard if it is enabled.
If [ Get ( TouchKeyboardState ) = 1]
Enable Touch Keyboard [Off]
End If
Related topics