Search found 1490 matches
- Jul 5th, ’22, 19:53
- Forum: General Discussion
- Topic: Find and replace characters in the macro database
- Replies: 5
- Views: 241
Re: Find and replace characters in the macro database
Just reload FastKeys after making changes.
- Jul 5th, ’22, 19:52
- Forum: General Discussion
- Topic: Trigger by time
- Replies: 2
- Views: 30
Re: Trigger by time
Here is one way:
Make sure to prevent the computer to go to sleep.
Code: Select all
MinutesToStart:=60
SetTimer, TimeReached, % MinutesToStart * -60000
return
TimeReached:
MsgBox, Time Reached
- Jul 5th, ’22, 19:33
- Forum: User Commands and Scripts
- Topic: to open site with
- Replies: 2
- Views: 34
Re: to open site with
Shortcut: Ctrl (you need to double click the shortcut entry field to enter it manually)
Type: Command
Command:
Type: Command
Command:
Code: Select all
If (A_PriorHotKey = A_ThisHotKey and A_TimeSincePriorHotkey < 350)
Run, https://fastkeysautomation.com
- Jul 1st, ’22, 21:21
- Forum: General Discussion
- Topic: renaming PDF file
- Replies: 4
- Views: 56
Re: renaming PDF file
The problem is that the Selection Form steals the focus from the entry field. This is a Windows limitation. I suggest a workaround: {F2}%SELECT_Car% %SELECT_Form%%ShortDate%{Enter} Create it as a shortcut, Type: Send. Simply select the file (you don't need to start renaming it) and press the shortcut.
- Jun 28th, ’22, 20:17
- Forum: User Commands and Scripts
- Topic: Keyboard Remapping
- Replies: 1
- Views: 41
Re: Keyboard Remapping
` character is an escape character in FastKeys so it needs to be escaped too.
Try the following shortcut
``"

Try the following shortcut
``"
- Jun 28th, ’22, 19:46
- Forum: General Discussion
- Topic: renaming PDF file
- Replies: 4
- Views: 56
Re: renaming PDF file
I tried and it works for me. Which end key do you use?
- Jun 28th, ’22, 19:40
- Forum: General Discussion
- Topic: Parse through a FDF file.
- Replies: 2
- Views: 38
Re: Parse through a FDF file.
Here is one idea:
Code: Select all
string:="
(
/T (FirstName)
/V ()
/T (LastName)
/V ()
/T (Phone)
/V ()
)"
FirstName:="Marty"
StringReplace, string, string, /T (FirstName)`n/V (), /T (FirstName)`n/V (%FirstName%)
msgbox % string
- Jun 24th, ’22, 14:02
- Forum: User Commands and Scripts
- Topic: Remove line breaks
- Replies: 2
- Views: 38
Re: Remove line breaks
This replaces all line breaks in the selected text with spaces (tries to preserve double breaks): Clipboard:="" Send, ^c ClipWait string:=clipboard stringreplace, string, string, `r`n`r`n, ♥, all stringreplace, string, string, `r`n, %A_Space%, all stringreplace, string, string, ♥, `n`n, all SendInpu...
- Jun 18th, ’22, 16:55
- Forum: General Discussion
- Topic: How do I make FKs recognize a URL in browser?
- Replies: 1
- Views: 42
Re: How do I make FKs recognize a URL in browser?
For filling the forms you could simulate the {Tab} key presses.
Please check this tutorial:
https://youtu.be/5qyXid49Pqs
Please check this tutorial:
https://youtu.be/5qyXid49Pqs
- Jun 16th, ’22, 21:17
- Forum: General Discussion
- Topic: Apps runnning as Admin thru FASTKEYS
- Replies: 2
- Views: 44
Re: Apps runnning as Admin thru FASTKEYS
Do you have Run as administrator option enabled in Preferences/General?