when selecting "ctrl+caps lock" option, Fastkeys is pasting clipboard instead of change case.

Discussion, questions and support.
Post Reply
cadudesun
Posts: 103
Joined: Jun 6th, ’15, 03:28

Post by cadudesun » Sep 8th, ’17, 21:08

Hi,
I'd appreciate help.
As showed in this screen-recording (https://goo.gl/EMv7zv), when selecting "ctrl+caps lock" option, Fastkeys is pasting clipboard instead of change case.
How to reestablish default behavior for "ctrl+caps lock" behavior (change case instead of pasting).
Thanks!
User avatar
Marko
Posts: 1718
Joined: Mar 2nd, ’13, 21:02

Post by Marko » Sep 9th, ’17, 19:48

It works for me. Maybe try adding a sleep 100 after the line Send ^{vk43} ;Ctrl C

Code: Select all

Send ^{vk43} ;Ctrl C
Sleep 100
cadudesun
Posts: 103
Joined: Jun 6th, ’15, 03:28

Post by cadudesun » Sep 9th, ’17, 22:33

Thanks for feedback Marko!
I found "Send ^{vk43} ;Ctrl C" in file Settings.fdb. I'm supposing I should change it here.
There is already the command: "Send ^{vk43} ;Ctrl C"¶ClipWait 0.5
In that case, if I change ClipWait to 0.1 would it be the same as Sleep 100?
User avatar
Marko
Posts: 1718
Joined: Mar 2nd, ’13, 21:02

Post by Marko » Sep 9th, ’17, 23:25

No, change it in FastKeys settings - Shortcuts, Ctrl-Capslock item.
cadudesun
Posts: 103
Joined: Jun 6th, ’15, 03:28

Post by cadudesun » Sep 10th, ’17, 00:29

Marko wrote:

No, change it in FastKeys settings - Shortcuts, Ctrl-Capslock item.
Thanks for clarification Marko.

I performed the change suggested by you, however Fastkeys "ctrl+capslock" instead of changing case is still pasting clipboard content.
I recorded my screen showing the issue: https://goo.gl/WBndWS
Any further idea on how to fix it?
cadudesun
Posts: 103
Joined: Jun 6th, ’15, 03:28

Post by cadudesun » Sep 10th, ’17, 15:15

Hi Marko.
I found out there was an interference of another app shortcuts with Fastkeys "ctrl+capslock".
The app is Golden Dict, and it has an inbuilt shortcut "ctrl+c,c" (hold "ctrl", then press "c" twice).
When I disabled this shortcut Fastkeys started working properly.
Thanks for assistance!
cadudesun
Posts: 103
Joined: Jun 6th, ’15, 03:28

Post by cadudesun » Sep 11th, ’17, 15:56

The fix in "ctrl+capslock" was achieved by changing "sleep" from 20 to 100 in other part of the command:

Code: Select all

PutText(MyText)
{
SavedClip := ClipboardAll 
Clipboard =
Sleep 100 ;changed from 20 to 100
Clipboard := MyText
Send ^{vk56} ;Ctrl V
Sleep 100
Clipboard := SavedClip
Return
}
Post Reply