How to press CTRL & SHIFT at same time by SimKeys?

x64 Replacement/Alternative to Microsoft's IntelliMouse application.
Forum rules
Please read the forum rules before posting for the first time.
The more information you can provide, the quicker and more accurately someone can help.
NOTE: To reduce spam, new users can not post links, files or images until they have at least 4 posts.
Post Reply
User avatar
Kukurykus
Fanatic
Posts: 388
Joined: Sat Jul 02, 2016 1:15 pm

How to press CTRL & SHIFT at same time by SimKeys?

Post by Kukurykus »

I'm able to send {F1}{HOLDMS:1500}{SHIFT} or {F1}{HOLDMS:1500}{CTRL} by SimKeys.

Both of them initiate Photoshop process by assigned function key. Because Ps script needs 1 second of refreshment to detect Shift or else Ctrl, they are used with HOLD command and follow the function key.

I use three different conditions in same script, 1st with F1, 2nd with F1 & CTRL and 3rd with F1 & SHIFT.

Because there is weird behaviour, Photoshop script can't detect support key together with function key if the function key is preceded by support key. It's why I use HOLD (refresh) to press CTRL or SHIFT after F1.

Problem with XMBC is that I can't use 4th condition of script by using: {F1}{HOLDMS:1500}{CTRL}{SHIFT}, though without XMBC it's okey doing it manually from keyboard. XMBC doesn't see neither CTRL nor SHIFT.

What is correct SimKey code to press for 1,5 second CTRL together with SHIFT, like in the above example?



EDIT: browsing forum for {ACTIVATE} I found by chance something similar to my problem (where also polish guy, MrMikeHunt tried to figure out how to do it :D): How press and hold this button down for some time ?

Acording to your tips and changes you made for him in 2.18 Beta 8 I used following solution:

Code: Select all

{F1}{PRESS}{CTRL}{PRESS}{SHIFT}{WAITMS:1500}{RELEASE}{CTRL}{RELEASE}{SHIFT}

I'm happy it works and I could get rid of temporary workaround, so setting Button Chording with F1 (chord) without ticked 'Block / Delay...' box, and other button with a method 'During' for {CTRL}{SHIFT}. I didn't like it as I had to use 2 buttons and hold them for over one second. Now I simply click and release my button :D


Then I tried in the above code replace WAITMS by HOLDMS but it didn't work. So my conculsion is, the HOLD can be used only for one modifier, while for more of them there's a mix of WAITMS and PRESS & RELEASE :idea:
HAMA Roma, Rapoo 3920P
Windows 10 x64, Intel i5-4670K @ 3.40GHz, 8GB,
Intel(R) HD Graphics 4600, Intel SSD 179 GB HDD
User avatar
phil
Site Admin
Posts: 7627
Joined: Sun Apr 06, 2003 11:12 pm

Re: How to press CTRL & SHIFT at same time by SimKeys?

Post by phil »

I'm not entirely sure hold will work with any modifier - tbh its been years since I looked at hold (so im not surprised if its buggy) - but the intent was it would hold the subsequent (following) tag/key down for that amount of time - only applicable to methods 1 and 2 too (and if your using during, its all different anyway as everything is held down).

But it makes sense to use the press/press/wait/release/release as that will definatly hold both keys down until the release, which is after the delay.
--[ Phil ]--
--[ Administrator & XMBC Author ]--
Logitech G9/G604/M720/MX518, Microsoft Intellimouse, Trust 16341 BT Mouse
Windows 10 x64, AMD Ryzen 5900x, MSI x570 Tomahawk, 32GB DDR4,
nVidia RTX 2070s, Evo 970 1Tb NVME, 2x2TB WD Black (RAID1)
User avatar
Kukurykus
Fanatic
Posts: 388
Joined: Sat Jul 02, 2016 1:15 pm

Re: How to press CTRL & SHIFT at same time by SimKeys?

Post by Kukurykus »

During was only temporary workaround without Hold. Normally I wanted to use it with method 1.
Okey so maybe something for future for you to take care of. Till then I'll use what I found myself.
HAMA Roma, Rapoo 3920P
Windows 10 x64, Intel i5-4670K @ 3.40GHz, 8GB,
Intel(R) HD Graphics 4600, Intel SSD 179 GB HDD
Post Reply