Search found 1629 matches

by Marko
May 6th, ’23, 16:56
Forum: Announcements
Topic: FastKeys 5.12 Released
Replies: 4
Views: 1623

FastKeys 5.12 Released

What's new in FastKeys 5.12: 6th May 2023 Release notes: - Added option to align Radio and CheckBox controls horizontally, - Comments enabled in Send mode, - Import routines improved, - Auto Complete popup optimized, - Additional settings in Enterprise Edition, - Updated translations, - Several enha...
by Marko
May 5th, ’23, 21:17
Forum: General Discussion
Topic: Copy paste with Excel?
Replies: 3
Views: 1043

Re: Copy paste with Excel?

Make sure you select the first cell in Excel before pressing the shortcut. You may also need to add a short sleep after copying. loop 5 { send, ^c sleep, 100 WinActivate, ahk_class Chrome_WidgetWin_1 sleep, 100 send, ^v send, {Tab} WinActivate, ahk_class XLMAIN sleep, 100 send, {Down} } return
by Marko
May 3rd, ’23, 20:23
Forum: General Discussion
Topic: Copy paste with Excel?
Replies: 3
Views: 1043

Re: Copy paste with Excel?

Set a new shortcut, Type: Command. The following example will loop 5 times. To run it, select the first cell in Chrome then the first cell in Excel and press a shortcut. Both windows must be opened. loop 5 { send, ^c WinActivate, ahk_class Chrome_WidgetWin_1 send, ^v send, {Tab} WinActivate, ahk_cla...
by Marko
May 1st, ’23, 07:25
Forum: General Discussion
Topic: Google chrome account with multiple browser
Replies: 4
Views: 917

Re: Google chrome account with multiple browser

You should change the Type to “Run”.
by Marko
Apr 30th, ’23, 14:39
Forum: General Discussion
Topic: Using textexpander string "addr1"
Replies: 8
Views: 1327

Re: Using textexpander string "addr1"

You are right, only A_ variables are currently recognized. We may improve this in one of the next updates.
by Marko
Apr 30th, ’23, 14:37
Forum: General Discussion
Topic: Google chrome account with multiple browser
Replies: 4
Views: 917

Re: Google chrome account with multiple browser

Right click on your desktop shortcut and copy what's in the Target field. Then create a shortcut in FastKeys, Type: Run, and paste the path. If you wish the path to open with specific browser, you need to specify the whole path, like this: C:\Program Files (x86)\Google\Chrome\Application\chrome.exe ...
by Marko
Apr 30th, ’23, 14:31
Forum: General Discussion
Topic: Problem with shortcut excecuting only once
Replies: 1
Views: 507

Re: Problem with shortcut excecuting only once

Avoid ExitApp command in FastKeys scripts, replace it with Return.
by Marko
Apr 26th, ’23, 14:35
Forum: Suggestions
Topic: Function Request
Replies: 2
Views: 700

Re: Function Request

Thanks for your suggestions. We will put them to our wish list for the potential future development. ;)
by Marko
Apr 22nd, ’23, 12:18
Forum: Suggestions
Topic: calculator function
Replies: 3
Views: 531

Re: calculator function

The calculation must be in the same line to work properly.
by Marko
Apr 21st, ’23, 14:30
Forum: General Discussion
Topic: Using Condition for Affixes
Replies: 2
Views: 421

Re: Using Condition for Affixes

Use "Insert Command Code" macro instead and enter:

Code: Select all

 if (SubStr(INPUT_Name, -0)="y")
	Send, % SubStr(INPUT_Name, 1, -1) "ies"
else
	Send, % INPUT_Name
Use "No output" in the Input macro.