Search found 1719 matches

by Marko
Mar 28th, ’24, 16:35
Forum: General Discussion
Topic: Autocomplete Switchoff/on
Replies: 1
Views: 29

Re: Autocomplete Switchoff/on

1. Auto Complete can only distinguish between whole windows and not between URLs. 2. When "Display suggestions as you type" option is enabled, Text Expander string suggestions will appear according to Auto Complete settings. Regular Text Expander functionality will still work as usual, you...
by Marko
Mar 15th, ’24, 15:27
Forum: General Discussion
Topic: Input macros under command option
Replies: 3
Views: 852

Re: Input macros under command option

Unfortunately not, "No output" option was introduced in v5.
by Marko
Mar 13th, ’24, 19:28
Forum: General Discussion
Topic: FK mobile settings issue
Replies: 2
Views: 68

Re: FK mobile settings issue

Not sure, it may be that you don’t have proper access rights.

You can also install FastKeys Portable on the computer disk - installer doesn’t require admin rights.
by Marko
Mar 13th, ’24, 19:25
Forum: General Discussion
Topic: Can Enterprise common file be stored on Sharepoint
Replies: 4
Views: 1000

Re: Can Enterprise common file be stored on Sharepoint

Currently not but we will see if this could be enabled in one of the next updates.
by Marko
Mar 5th, ’24, 19:54
Forum: Suggestions
Topic: FastKeys just stops working
Replies: 12
Views: 5342

Re: FastKeys just stops working

Do you get any error message? Have you checked if you are running programs mentioned in above posts?

Do you use any custom AutoHotkey scripts or loops? If FastKeys freezes (you cannot close it down) please contact our support mail.
by Marko
Mar 2nd, ’24, 12:16
Forum: General Discussion
Topic: Setting Xbutton1 and Xbutton2 for PgUp and PgDn
Replies: 1
Views: 181

Re: Setting Xbutton1 and Xbutton2 for PgUp and PgDn

Create two shortcuts (Type: Command): XButton1 (enable "Hook" option) While GetKeyState("XButton1", "P") { Send {PgDn} Sleep 20 } return XButton2 (enable "Hook" option) While GetKeyState("XButton2", "P") { Send {PgUp} Sleep 20 } return
by Marko
Feb 27th, ’24, 22:29
Forum: General Discussion
Topic: Auto run programme with timer
Replies: 2
Views: 146

Re: Auto run programme with timer

You can set a Start menu or a shortcut to run this script, Type: Command:

Code: Select all

SetTimer Ticker, 1000

Ticker:
	If (A_Hour=7 and A_Min=5 and A_Sec=20)
	{
		;Your script here
                MsgBox It's time!
	}
Return
by Marko
Feb 17th, ’24, 09:51
Forum: General Discussion
Topic: Setup Cursor to move a binding distance
Replies: 1
Views: 110

Re: Setup Cursor to move a binding distance

What do you mean by “binding distance”?
by Marko
Feb 17th, ’24, 09:50
Forum: General Discussion
Topic: FASTKEYS is instable on one computer
Replies: 4
Views: 314

Re: FASTKEYS is instable on one computer

You can set a Reload shortcut in Preferences/General/Shortcuts.
by Marko
Feb 11th, ’24, 10:12
Forum: General Discussion
Topic: Depending on Computer Name
Replies: 2
Views: 139

Re: Depending on Computer Name

This should be the correct syntax (Type: Command):

Code: Select all

if (A_ComputerName = "Nitro")
	run, URL A
else if (A_ComputerName = "Aspire")
	run, URL B
else
	run, URL C