![]() |
2010-03-20
, 20:56
|
|
Posts: 4,274 |
Thanked: 5,358 times |
Joined on Sep 2007
@ Looking at y'all and sighing
|
#2
|
The Following User Says Thank You to qwerty12 For This Useful Post: | ||
![]() |
2010-03-20
, 21:00
|
Posts: 286 |
Thanked: 100 times |
Joined on Dec 2009
@ down south
|
#3
|
![]() |
2010-03-20
, 21:04
|
|
Posts: 516 |
Thanked: 643 times |
Joined on Oct 2009
@ Denmark/Poland
|
#4
|
![]() |
2010-03-21
, 10:49
|
Posts: 286 |
Thanked: 100 times |
Joined on Dec 2009
@ down south
|
#5
|
![]() |
2010-03-21
, 11:33
|
Posts: 1,341 |
Thanked: 708 times |
Joined on Feb 2010
|
#6
|
@dread123, no technical problem with adding support for any button through shortcutd and short camera press.
We have even planned to add support for arbitrary button with shortcutd, but it's better if there is any actual use for them.
Full press is more tricky, we do not plan to add this in shortcutd (in short: it needs to prevent camera application to launch and that is an ugly hack).
![]() |
2010-03-21
, 11:36
|
Posts: 286 |
Thanked: 100 times |
Joined on Dec 2009
@ down south
|
#7
|
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.