Search found 1726 matches

by Marko
Mar 13th, ’24, 19:25
Forum: General Discussion
Topic: Can Enterprise common file be stored on Sharepoint
Replies: 4
Views: 1011

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: 13
Views: 5491

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

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

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

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

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

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

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…
by Marko
Feb 4th, ’24, 20:06
Forum: General Discussion
Topic: Text expansion not working in Outlook
Replies: 7
Views: 680

Re: Text expansion not working in Outlook

Preferences/Text Expander - are the fields under Restrictions section all blank?

Do you mean all text expander items are not working or only one?

Which version of Outlook are you using?

Try to set a Key Delay of 80ms in Preferences/Text Expander/Advanced - any difference?
by Marko
Feb 4th, ’24, 13:02
Forum: General Discussion
Topic: FASTKEYS is instable on one computer
Replies: 4
Views: 332

Re: FASTKEYS is instable on one computer

If I understand correctly, FastKeys is running well on one computer and stops working after a while on another. This means that another program on your computer takes the control over the "keyboard hook", preventing FastKeys to use it. Known programs include Microsoft Powertoys, VDOS, Micr...