hiGetBindKey
hiGetBindKey( [t_applicationType] [t_key] ) =>t_skill_cmd/nil
Description
Returns the SKILL command string bound to a key or mouse button for an application.
If t_applicationType or t_key is not specified, a bindkey form is displayed.
Arguments
Values Returned
|
The associated SKILL function string if one is associated with the specified application type and key sequence. |
|
|
t_applicationType or s_key is invalid. A warning is also issued. |
Examples
Display the Bindkey Editor form.
hiGetBindkey(“Layout”)
The following examples retrieve information about different bindkeys in layout.
hiGetBindKey("Layout" "<Key>z")
=> "hiZoomIn()"
hiGetBindKey("Layout" "<Key>Up")
=> "geScroll(nil \"n\" nil)"
hiGetBindKey("Layout" "Ctrl<Key>J")
=> "leHiFlip()"
hiGetBindKey("Layout" "Ctrl Shift <Key>J")
=> "drdCompactSelSet('right)"
hiGetBindKey("Layout" "Ctrl Shift <Btn1Down>") ; Btn1Down – button of mouse
=> "hiZoomInMagnifier(hiGetCurrentWindow())"
Related Topics
Return to top