Search found 19 matches

by Admirer
May 28th, ’20, 05:56
Forum: General Discussion
Topic: Sound Equalizer
Replies: 0
Views: 8847

Sound Equalizer

In Windows, one has to go this way to open the sound equalizer: Sound > Speakers > Properties > Enhancement > Equalizer and then click those 3 dots in the corner. Is there any quick way to open it?
by Admirer
Dec 14th, ’19, 04:17
Forum: General Discussion
Topic: Minimize Window
Replies: 1
Views: 1190

Minimize Window

Any short cut to minimize the topmost open window? :(
by Admirer
Dec 3rd, ’19, 14:08
Forum: Suggestions
Topic: FasyKeys won't start on PC boot or restart
Replies: 0
Views: 5600

FasyKeys won't start on PC boot or restart

Under the settings, Run Fastkeys on Startup is enabled. Previously, it would open by itself but since a few days, I have noticed that Fastkeys doesn't start with the PC. What could be the problem? In the task manager, too, the startup is enabled.
by Admirer
Aug 29th, ’19, 02:04
Forum: General Discussion
Topic: Suggest me a quick way to toggle between....
Replies: 3
Views: 2469

Re: Suggest me a quick way to toggle between....

:D please explain me a little about this code!
Which key i have to use to toggle between two programs? Windows key?
I wish it should work to toggle the top 2 programs out of many which are open.
Thanks.
by Admirer
Aug 28th, ’19, 06:53
Forum: General Discussion
Topic: Suggest me a quick way to toggle between....
Replies: 3
Views: 2469

Suggest me a quick way to toggle between....

Suggest me a quick way to toggle between two open windows (programmes) using Fastkeys! :roll:
by Admirer
Aug 28th, ’19, 05:48
Forum: User Commands and Scripts
Topic: AutoCopy the Selected Text to Clipboard by Mouse Lbutton
Replies: 6
Views: 7898

Re: AutoCopy the Selected Text to Clipboard by Mouse Lbutton

Thanks. Now I could split the code in three different parts which enables auto copy of the selected text by different methods and save much time. Giving it below for those who wish to add these short cuts in their settings: 1. Auto copy of selection done by Single/double/triple click Short cut: ~Lbu...
by Admirer
Aug 27th, ’19, 07:57
Forum: User Commands and Scripts
Topic: AutoCopy the Selected Text to Clipboard by Mouse Lbutton
Replies: 6
Views: 7898

Re: AutoCopy the Selected Text to Clipboard by Mouse Lbutton

Wanted to create following short-cuts:

~Lshift:: and ~^a

But can't find "Lshift" and "^" keys in the short cut menu.
by Admirer
Aug 26th, ’19, 05:09
Forum: User Commands and Scripts
Topic: AutoCopy the Selected Text to Clipboard by Mouse Lbutton
Replies: 6
Views: 7898

Re: AutoCopy the Selected Text to Clipboard by Mouse Lbutton

Replaced the original code with the following code. This code gives Error at Line 45 Line Text: ~LButton Error: Duplicate hotkey ;Auto copy clipboard ~Lshift:: TimeButtonDown = %A_TickCount% ; Wait for it to be released Loop { Sleep 10 GetKeyState, LshiftState, Lshift, P if LshiftState = U ; Button ...
by Admirer
Aug 26th, ’19, 04:42
Forum: Suggestions
Topic: About Latest version
Replies: 11
Views: 11615

Re: About Latest version

Windows 10
by Admirer
Aug 25th, ’19, 05:53
Forum: User Commands and Scripts
Topic: AutoCopy the Selected Text to Clipboard by Mouse Lbutton
Replies: 6
Views: 7898

AutoCopy the Selected Text to Clipboard by Mouse Lbutton

This is one of the default commands of Fastkeys under Shortcuts. The command script goes like this: md_treshold:=20 ;pixels MouseGetPos, mdx, mdy KeyWait LButton MouseGetPos, mdx2, mdy2 if (abs(mdx2-mdx)>md_treshold or abs(mdy2-mdy)>md_treshold) SendInput ^{vk43} ;Ctrl C There is a little problem th...