View Single Post
Posts: 286 | Thanked: 100 times | Joined on Dec 2009 @ down south
#1
trying to enable the camera key in Sygic to enable rotate mode. does anyone know the decimal number and also the scancode for it? both long press and short press please

info must be out there as its used in shortcutd etc...

not sure but if anyone understands this and can help please??


; before decimal values of keys are posible two prefixes "U:" or "D:".
; If is defined the prefix "U:" key is send only by WM_KEYUP message.
; If is defined the prefix "D:" key is send only by WM_KEYDOWN message.
; In other cases are keys send by both messages.

; after decimal values of keys is posible specify scancode of key

; Example:
; VkLeft= U:037:080
; Only by WM_KEYDOWN is send key with value 0x25 and scancode 0x50

[Common]
;//////////////////////////////////
;F1 = 0x70
VkAction1= 000
;F2 = 0x71
VkAction2= 000

;Special input mode switch "ALT"
VkInputSpec= 000


;backspace = 0x08
VkBack= 8

;tab = 0x09
VkTab= 61

;enter = 0x0D
VkEnter= 13

;Shift = 0x10
VkShift= 016


;left arrow = 0x25
VkLeft= 81
;right arrow = 0x27
VkRight= 83
;up arrow = 0x26
VkUp= 82
;down arrow = 0x28
VkDown= 84

;25
VkVolumeUp= 000

;24
VkVolumeDown= 000

;
VkZoomIn= 000

;
VkZoomOut= 000

;4
VkEscape= 000

;
VkFind= 0

;
VkMenu= 0

;
VkSaveLocation= 000

;
Vk3D2D= 000

;
VkRotate= 000

;
VkExit= 000

;/////////////End of common section /////



thats the file i need to edit in order to do whats intended

Last edited by dread123; 2010-03-20 at 20:57.