Search found 1726 matches

by Marko
Jan 31st, ’19, 16:47
Forum: General Discussion
Topic: Show start menu at cursor
Replies: 1
Views: 1264

Re: Show start menu at cursor

Both menus should work the same way. Set the two different shortcuts and set both "Show menu on" options to None in Preferences/Start Menu #1 and #2.
by Marko
Jan 31st, ’19, 16:37
Forum: Suggestions
Topic: Text expand everywhere
Replies: 3
Views: 3044

Re: Text expand everywhere

Not sure I understand. Ending characters (which trigger the substitution) can be defined in Preferences/Text Expander. You can also select a "Trigger immediately" option.
by Marko
Jan 27th, ’19, 17:43
Forum: Announcements
Topic: FastKeys 4.16 Released
Replies: 5
Views: 12063

FastKeys 4.16 Released

What's new in FastKeys 4.16:
27th January 2019

Release notes:
- Optimized gestures context sensitivity,
- Updated translations,
- Several small improvements,
- Bug fixes

As always, your comments, suggestions or bug reports are highly appreciated.
:D Thanks!

Download FastKeys HERE!.
by Marko
Jan 24th, ’19, 18:34
Forum: General Discussion
Topic: Mounting NFS
Replies: 4
Views: 2033

Re: Mounting NFS

Tested on our computers and all characters are sent correctly. It could be that your console is using different input language. For example, when FastKeys sends a virtual key-code of the character :, the console wrongly interprets it as ^. Try in Notepad to see if it works.
by Marko
Jan 23rd, ’19, 20:47
Forum: General Discussion
Topic: Show keyboard manager
Replies: 5
Views: 2621

Re: Show keyboard manager

This is not possible, internal shortcuts cannot be triggered by keystrokes produced by FastKeys.
by Marko
Jan 23rd, ’19, 20:44
Forum: General Discussion
Topic: Result of run to clipboard
Replies: 10
Views: 6317

Re: Result of run to clipboard

If the command is the same there is no reason this would not work. For example, I tried the similar code below and it works in both, Shortcuts and Start Menu.

Code: Select all

FileAppend, % "This is a test", Test.txt
FileRead, clipboard, Test.txt
FileDelete, Test.txt
by Marko
Jan 23rd, ’19, 10:56
Forum: General Discussion
Topic: Result of run to clipboard
Replies: 10
Views: 6317

Re: Result of run to clipboard

Maybe a short pause is needed before FileRead.
by Marko
Jan 23rd, ’19, 08:28
Forum: General Discussion
Topic: Result of run to clipboard
Replies: 10
Views: 6317

Re: Result of run to clipboard

I'm not familiar with Bash. How you run is dependent on it's folder location on your system. Most probably you can run the script directly like this (one of the two should work): Run C:\Windows\System32\bash.exe /home/jjussi/randpass.sh Run C:\Windows\Sysnative\bash.exe /home/jjussi/randpass.sh Then...
by Marko
Jan 21st, ’19, 14:59
Forum: General Discussion
Topic: What syntax for relative paths used in scripts (eg. if driver letter change G to Y the script should keep working)
Replies: 2
Views: 1492

Re: What syntax for relative paths used in scripts (eg. if driver letter change G to Y the script should keep working)

You can use built-in variables like
A_WorkingDir
A_ScriptDir
A_WinDir
A_ProgramFiles
A_AppData
A_MyDocuments
etc...
https://www.autohotkey.com/docs/Variables.htm#prop

../ type syntax should also work.
by Marko
Jan 17th, ’19, 22:12
Forum: General Discussion
Topic: How to use Text Expander when pasting from Shortcut
Replies: 5
Views: 2866

Re: How to use Text Expander when pasting from Shortcut

By default, commands are never triggered by keystrokes produced by FastKeys. This avoids the possibility of an infinite loop where commands trigger each other over and over. By the way, your usage of StringSplit is incorrect, just use my script and only change "LongDate" to "dddd d MM...