Search found 1804 matches

by Marko
Oct 11th, ’24, 21:24
Forum: General Discussion
Topic: Create a Shortcut - Hotkey like ALT + A
Replies: 1
Views: 66

Re: Create a Shortcut - Hotkey like ALT + A

For example, to simulate Alt+A:

Type: Send
{Alt Down}A{Alt Up}

Or Type: Command
Send, !A
by Marko
Oct 8th, ’24, 19:00
Forum: General Discussion
Topic: Show menu on and two monitors
Replies: 3
Views: 120

Re: Show menu on and two monitors

What happens if you position the Task Bar to the bottom of the screen?
You need to restart FastKeys after changing the monitor setup.
by Marko
Oct 4th, ’24, 17:00
Forum: General Discussion
Topic: Text in explorer address line
Replies: 4
Views: 159

Re: Text in explorer address line

I see, it seems that the focus is lost during the process. We'll test it further.
But why not using
Type: Run

Code: Select all

C:\Users\marexds\Desktop\
/C:\Users\marexds\Desktop\Folder1
/C:\Users\marexds\Desktop\Folder2
by Marko
Oct 3rd, ’24, 09:08
Forum: Suggestions
Topic: FastKeys just stops working
Replies: 26
Views: 10475

Re: FastKeys just stops working

You need to find the software which does this on your computer (anti virus, security, keylogger, other automation software etc). Try to disable one by one in Task Manager.
by Marko
Oct 3rd, ’24, 09:00
Forum: General Discussion
Topic: Show menu on and two monitors
Replies: 3
Views: 120

Re: Show menu on and two monitors

If right edge is selected then the menu will always appear on the right edge of the most right monitor. You need to restart FastKeys after changing the monitor setup.
by Marko
Oct 3rd, ’24, 08:57
Forum: General Discussion
Topic: Text in explorer address line
Replies: 4
Views: 159

Re: Text in explorer address line

I tried and it works for me. Maybe share your command setting.
by Marko
Oct 3rd, ’24, 08:52
Forum: General Discussion
Topic: Simple keystrokes
Replies: 3
Views: 132

Re: Simple keystrokes

Type: Send

Code: Select all

{Backspace}{1000}1{1000}Y{1000}G
or Type: Command

Code: Select all

Send, {Backspace}
Sleep, 1000
Send, 1
Sleep, 1000
Send, Y
Sleep, 1000
Send, G
by Marko
Oct 2nd, ’24, 11:37
Forum: Suggestions
Topic: FastKeys just stops working
Replies: 26
Views: 10475

Re: FastKeys just stops working

No difference, Reload runs FastKeys.exe again. Running as admin could help, it depends on the conflicting software.

Can you please check if saving the settings (instead if Reload) also help?
by Marko
Oct 2nd, ’24, 07:34
Forum: Suggestions
Topic: FastKeys just stops working
Replies: 26
Views: 10475

Re: FastKeys just stops working

Can you please check if saving the settings (Ctrl+S) solves your issue or you need to reload FastKeys?
by Marko
Oct 1st, ’24, 19:10
Forum: User Commands and Scripts
Topic: Center Window - Won't Work With Adobe
Replies: 2
Views: 224

Re: Center Window - Won't Work With Adobe

Does this work?

Code: Select all

WinGetPos,,, Width, Height, A
WinMove A,, (A_ScreenWidth-Width)/2, (A_ScreenHeight-Height)/2
or

Code: Select all

SysGet Mon, MonitorWorkArea
WinGetPos,,, Width, Height, A
WinMove A,, (MonRight-Width)/2, (MonBottom-Height)/2