SetDefaultKeyMap
 
 
 

SetDefaultKeyMap

Introduced

v5.0

Description

Changes the keyboard mapping to the specified one and makes it the new default for the application.

Scripting Syntax

SetDefaultKeyMap( Name );

Parameters

Parameter Type Description
Name String Name of keyboard mapping to use as the default.

Examples

VBScript Example

' Switch to SI3D keyboard mapping
Application.LogMessage "Old Key Map: " & GetValue( "Preferences.Interaction.defaultkeymap" )
SetDefaultKeyMap "SI|3D Key Map"
Application.LogMessage "New Key Map: " & GetValue( "Preferences.Interaction.defaultkeymap" )