The first phrase with ".pdf" window setting already catches all windows which contain "pdf" in the name, therefore also the second one.
The solution is (like you said) to use a different window setting for the second phrase, for example "to image" or similar.
Search found 1257 matches
- Jan 16th, ’21, 21:38
- Forum: General Discussion
- Topic: Specific Window target, when two are rather identical
- Replies: 8
- Views: 58
- Jan 14th, ’21, 22:08
- Forum: Announcements
- Topic: FastKeys 4.30 Released
- Replies: 5
- Views: 198
Re: FastKeys 4.30 Released
FastKeys is clean and safe software. Some web security or antivirus software may occasionally wrongly suspect FastKeys as Spyware because it processes keyboard input. Such reports are false and FastKeys is absolutely safe to use. In such cases please to manually unblock FastKeys from the quarantine ...
- Jan 12th, ’21, 23:28
- Forum: General Discussion
- Topic: Specific Window target, when two are rather identical
- Replies: 8
- Views: 58
Re: Specific Window target, when two are rather identical
Sorry, I don't get it - what's the idea? Please give me an example. 

- Jan 12th, ’21, 21:19
- Forum: General Discussion
- Topic: Specific Window target, when two are rather identical
- Replies: 8
- Views: 58
Re: Specific Window target, when two are rather identical
If both, Shortcut and Window are the same, there is a conflict, of course.
- Jan 12th, ’21, 11:41
- Forum: Suggestions
- Topic: Disable Clipboard Manager
- Replies: 1
- Views: 30
Re: Disable Clipboard Manager
After changing the Preferences, click OK and the shortcut should not "come back". Also, setting the history to 0 completely disables the Clipboard Manager.
- Jan 11th, ’21, 22:33
- Forum: General Discussion
- Topic: Specific Window target, when two are rather identical
- Replies: 8
- Views: 58
Re: Specific Window target, when two are rather identical
You can set two same shortcuts (for example both Alt+X) with different Window setting and it should work.
- Jan 11th, ’21, 13:49
- Forum: General Discussion
- Topic: Expansion not working half of the time
- Replies: 1
- Views: 28
Re: Expansion not working half of the time
Does the same string expands in Notepad?
If yes, try setting a Key Delay to 80-100ms in Preferences/Text Expander/Advanced.
If yes, try setting a Key Delay to 80-100ms in Preferences/Text Expander/Advanced.
- Jan 10th, ’21, 18:02
- Forum: User Commands and Scripts
- Topic: inserting blank lines between selected text
- Replies: 7
- Views: 66
Re: inserting blank lines between selected text
Sorry, I don't follow. Give me a simple example of what you would like to achieve.
I also removed part of your post as it contained links.

I also removed part of your post as it contained links.
- Jan 5th, ’21, 21:15
- Forum: User Commands and Scripts
- Topic: inserting blank lines between selected text
- Replies: 7
- Views: 66
Re: inserting blank lines between selected text
Sorry, this should insert blank lines.
Code: Select all
string:=Clipboard
StringReplace, String, String, `r`n, `n`n, all
send, % string
string:=""
- Jan 5th, ’21, 17:55
- Forum: User Commands and Scripts
- Topic: inserting blank lines between selected text
- Replies: 7
- Views: 66
Re: inserting blank lines between selected text
This will paste the clipboard content with removed blank lines.
Set it as a shortcut, Type: Command.
Set it as a shortcut, Type: Command.
Code: Select all
string:=Clipboard
Loop
{
StringReplace, string, string, `r`n`r`n, `r`n, UseErrorLevel
if (ErrorLevel=0)
break
}
Send, % string
string:=""