Search found 796 matches

by Tom
Apr 16th, ’19, 21:38
Forum: General Discussion
Topic: Re-register After Every Upgrade
Replies: 4
Views: 3889

Re: Re-register After Every Upgrade

You are right, there is an issue with the portable installer.
We will resolve this in the new release, thanks for reporting.
by Tom
Apr 15th, ’19, 16:25
Forum: General Discussion
Topic: Re-register After Every Upgrade
Replies: 4
Views: 3889

Re: Re-register After Every Upgrade

This is not by design. Try running FastKeys as administrator and then register again.
by Tom
Apr 11th, ’19, 11:23
Forum: General Discussion
Topic: suggestion on using %INPUT_name% once but getting 2 different-formatted outputs?
Replies: 3
Views: 3142

Re: suggestion on using %INPUT_name% once but getting 2 different-formatted outputs?

One way to handle this is by using a small script in Insert Command Code macro: Command (Type: Send) %INPUT__Type%%INPUT__Name%%CODE_script% CODE_script: Send, public %INPUT__type% get%INPUT__name%{(}{)} {{} StringUpper, INPUT__name, INPUT__name, T Send, {Enter}return this.%INPUT__name%{;} Note that...
by Tom
Mar 29th, ’19, 17:35
Forum: General Discussion
Topic: Workaround to set two shortcuts for same main Start Menu?
Replies: 8
Views: 4763

Re: Workaround to set two shortcuts for same main Start Menu?

Not sure, you can try another shortcut... ;)
by Tom
Mar 28th, ’19, 21:02
Forum: General Discussion
Topic: Workaround to set two shortcuts for same main Start Menu?
Replies: 8
Views: 4763

Re: Workaround to set two shortcuts for same main Start Menu?

Create another shortcut (Type: Command):

Code: Select all

SendLevel 1
send #'
SendLevel 0
by Tom
Mar 28th, ’19, 20:51
Forum: Suggestions
Topic: google shortcut
Replies: 9
Views: 8249

Re: google shortcut

I'm also using Firefox, tried many times with no issue. Not sure what's going on on your side.
by Tom
Mar 24th, ’19, 18:01
Forum: General Discussion
Topic: Connect to net with shortcut
Replies: 11
Views: 5146

Re: Connect to net with shortcut

No need to install AutoHotkey. Try the following (Type: Command):

Code: Select all

mySSD:="ABC1"
myPass:="123pass"
Run,%Comspec% netsh wlan connect ssid=%mySSD% key=%myPass%,, Hide
by Tom
Mar 24th, ’19, 17:00
Forum: General Discussion
Topic: Connect to net with shortcut
Replies: 11
Views: 5146

Re: Connect to net with shortcut

by Tom
Mar 23rd, ’19, 22:00
Forum: General Discussion
Topic: How to use "Window to left or right Half of the Screen" with multi monitor
Replies: 2
Views: 1802

Re: How to use "Window to left or right Half of the Screen" with multi monitor

You can simply use the following Windows shortcuts (Type: Command) instead:

Code: Select all

Send, #{Left}
;and

Code: Select all

Send, #{Right}