Search found 1728 matches

by Marko
Jul 30th, ’18, 20:25
Forum: General Discussion
Topic: Run a program with parameters
Replies: 4
Views: 2520

Re: Run a program with parameters

I was able to run it like this (Type: Run, change the exact path):
D:\Portable Apps\highlight-3.44-x64\highlight-gui.exe --portable, D:\Portable Apps\highlight-3.44-x64
by Marko
Jul 30th, ’18, 19:52
Forum: User Commands and Scripts
Topic: Meta-searching with 1 keyword
Replies: 5
Views: 34006

Re: Meta-searching with 1 keyword

Nice challenge. Please add search entries for other sites and post the complete script here :D Type: Command InputBox, Input, Meta search, Prefixes: g`, shop`, tools, , 300, 120 DivPos:=InStr(Input, " ") Prefix:=SubStr(Input, 1, DivPos-1) SearchText:=SubStr(Input, DivPos+1) StringReplace, ...
by Marko
Jul 29th, ’18, 20:18
Forum: General Discussion
Topic: Run a program with parameters
Replies: 4
Views: 2520

Re: Run a program with parameters

Try
"F:\Portable Apps\highlight 3.43 x64\highlight-gui.exe --portable"

or (Type: Command)
Run, "F:\Portable Apps\highlight 3.43 x64\highlight-gui.exe --portable"
by Marko
Jul 27th, ’18, 18:09
Forum: General Discussion
Topic: Start with unchecked checkboxes
Replies: 5
Views: 2480

Re: Start with unchecked checkboxes

Ok, the first checkbox is active by default. Should this be changed to none?
Looking forward to opinions...
by Marko
Jul 25th, ’18, 22:01
Forum: General Discussion
Topic: Start with unchecked checkboxes
Replies: 5
Views: 2480

Re: Start with unchecked checkboxes

Checkboxes in selections are unchecked by default.
by Marko
Jul 24th, ’18, 07:26
Forum: Suggestions
Topic: Anchor input window to center of primary display multiple monitors
Replies: 2
Views: 2549

Re: Anchor input window to center of primary display multiple monitors

Ok, we will try to improve this in the next release.
Thanks for mentioning.
by Marko
Jul 20th, ’18, 19:00
Forum: General Discussion
Topic: Divider in multiple lines for textexpander?
Replies: 1
Views: 1627

Re: Divider in multiple lines for textexpander?

You can use tabs to organize your snippets. Or you could make a dummy command with the divider description.
by Marko
Jul 20th, ’18, 18:54
Forum: General Discussion
Topic: Horizontal Scrolling with RMouse+Wheel
Replies: 6
Views: 3073

Re: Horizontal Scrolling with RMouse+Wheel

I tested again on Win10 and Win7 and it works for me - holding right mouse button while scrolling a wheel gives me a horizontal scroll. You can disable normal right click by omitting a "~" character in the shortcut.
by Marko
Jul 17th, ’18, 15:49
Forum: General Discussion
Topic: Error While adding or editing any item in Start Menu
Replies: 2
Views: 1685

Re: Error While adding or editing any item in Start Menu

Can you edit one of the example items? Please open the provided example file - File/Open - Examples. Does it work?

To be able to review your settings please contact us on support at fastkeysautomation.com. Please attach your Settings.fdb and Settings.ini files.
by Marko
Jul 15th, ’18, 15:00
Forum: General Discussion
Topic: Horizontal Scrolling with RMouse+Wheel
Replies: 6
Views: 3073

Re: Horizontal Scrolling with RMouse+Wheel

Scroll left - Shortcut: ~RButton & WheelUp MouseGetPos,,,id, fcontrol,1 Loop 8 ; <-- Increase for faster scrolling SendMessage, 0x114, 0, 0, %fcontrol%, ahk_id %id% ;0x114 - WM_HSCROLL return Scroll right - Shortcut: ~RButton & WheelDown MouseGetPos,,,id, fcontrol,1 Loop 8 ; <-- Increase for...