Search found 1718 matches

by Marko
Mar 15th, ’24, 15:27
Forum: General Discussion
Topic: Input macros under command option
Replies: 3
Views: 844

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: 53

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: 991

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: 11
Views: 5282

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: 177

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: 141

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: 102

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: 308

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: 135

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
by Marko
Feb 7th, ’24, 11:50
Forum: General Discussion
Topic: Text expander slowing down
Replies: 2
Views: 121

Re: Text expander slowing down

Yes, enable “Use clipboard” option (under More options) when defining individual item.

There is also a global setting in Preferences/Text Expander/Advance - Use clipboard if text lenght exceeds…