Search found 791 matches

by Tom
Apr 26th, ’20, 19:48
Forum: User Commands and Scripts
Topic: Automate Facebook Posts
Replies: 1
Views: 3183

Re: Automate Facebook Posts

Possible but you would need to learn IE COM. See the basic tutorial here:
https://autohotkey.com/board/topic/6456 ... -webpages/
by Tom
Apr 26th, ’20, 19:36
Forum: General Discussion
Topic: Does anyone have a script to paste with all HTML formatting preserved?
Replies: 1
Views: 1322

Re: Does anyone have a script to paste with all HTML formatting preserved?

Not sure what you mean. Simulating Ctrl+V should preserve formatting.

Code: Select all

Send, ^v
by Tom
Apr 26th, ’20, 19:30
Forum: General Discussion
Topic: hi im new member here . may i know how to build variable box from gui and have submit button for send value i put in var
Replies: 1
Views: 801

Re: hi im new member here . may i know how to build variable box from gui and have submit button for send value i put in

Something like this?

Code: Select all

gui, add, text,, Variable:
gui, add, edit, vMyVariable
gui, add, button, gButtonOK default, OK
gui, show
return

ButtonOK:
gui, submit, nohide
msgbox % MyVariable
return
by Tom
Apr 23rd, ’20, 18:05
Forum: Suggestions
Topic: Always on top
Replies: 1
Views: 2644

Re: Always on top

Sure, create a shortcut with the following command (Type: Command):

Code: Select all

Winset, AlwaysOnTop,, A
You can also check the other presets from the Library.
by Tom
Apr 21st, ’20, 17:03
Forum: General Discussion
Topic: Macro recording
Replies: 4
Views: 3349

Re: Macro recording

You can run the the recorded macro by pressing Play macro shortcut (default F11) or save macro to a normal phrase (Insert/Recorded macro).

You could also use a script to loop the macro (Type: Command):

Code: Select all

Loop, 10
{
     Send, My recorded macro text
}
by Tom
Apr 17th, ’20, 18:14
Forum: Suggestions
Topic: Unable to add new Text Expander Shortcuts
Replies: 2
Views: 2999

Re: Unable to add new Text Expander Shortcuts

Thanks for reporting this, will be resolved asap. ;)
by Tom
Apr 8th, ’20, 22:16
Forum: Suggestions
Topic: application stops working
Replies: 13
Views: 10799

Re: application stops working

Again, FastKeys does not make any registry entries. The entries you see are created by Windows (Recent file list, Cache etc.). Deleting those entries will not solve the issue.
by Tom
Apr 8th, ’20, 21:30
Forum: Suggestions
Topic: application stops working
Replies: 13
Views: 10799

Re: application stops working

56Loaches, your post is misleading, this can certainly not help. FastKeys does not make any registry entries! We were able to solve the issue with some users by - running FastKeys as administrator - disabling a conflicting process (security software or gaming related processes) - trying with another...
by Tom
Apr 3rd, ’20, 22:06
Forum: General Discussion
Topic: Built-In Scripts
Replies: 1
Views: 1220

Re: Built-In Scripts

Insert command code macro?
by Tom
Mar 28th, ’20, 14:23
Forum: Suggestions
Topic: FIX: Arbitrary Limits on Auto Complete Settings
Replies: 1
Views: 2372

Re: FIX: Arbitrary Limits on Auto Complete Settings

Thanks, we will think about adjusting the limits.