- Posts: 59
Combo KeyCodes ?
- mindu
-
Topic Author
- Offline
Less More
5 years 2 weeks ago - 5 years 2 weeks ago #1 by mindu
Combo KeyCodes ? was created by mindu
I would like to ask how to set a combo of two keys with virtual keycodes, for example, if I have the following:
and I want it with "0x02" how would it be? everything I tried didn't worked
toggle = 0x01
and I want it with "0x02" how would it be? everything I tried didn't worked
Last edit: 5 years 2 weeks ago by mindu.
Please Log in or Create an account to join the conversation.
- crosire
-
- Offline
Less More
- Posts: 3849
5 years 2 weeks ago - 5 years 2 weeks ago #2 by crosire
Replied by crosire on topic Combo KeyCodes ?
There are three annotation values called "togglectrl", "toggleshift" and "togglealt". Set them to true and the toggle is only triggered if both them and the key specified via "toggle" are pressed. Example: The following means "Ctrl + Shift + Space":
technique mindu < enabled = true; toggle = 0x20; togglectrl = true; toggleshift = true; togglealt = false; >
Last edit: 5 years 2 weeks ago by crosire.
The following user(s) said Thank You: mindu
Please Log in or Create an account to join the conversation.
- mindu
-
Topic Author
- Offline
Less More
- Posts: 59
5 years 2 weeks ago #3 by mindu
Replied by mindu on topic Combo KeyCodes ?
You are a life-saver, thanks!crosire wrote: There are three annotation values called "togglectrl", "toggleshift" and "togglealt". Set them to true and the toggle is only triggered if both them and the key specified via "toggle" are pressed. Example: The following means "Ctrl + Shift + Space":
technique mindu < enabled = true; toggle = 0x20; togglectrl = true; toggleshift = true; togglealt = false; >
Please Log in or Create an account to join the conversation.