Indexing? No.
And as long as you have a .pdf preview handler installed (which should not be Adobes...):
Name & Location tab
Name: *.pdf
Location: Enter your folders here separated by | or a ;
and use the Contents tab for what you're searching inside of them...
Search found 10080 matches
- 19 Apr 2021 13:08
- Forum: Tips & Tricks, Questions & Answers
- Topic: Search in multiple PDFs?
- Replies: 2
- Views: 6
- 19 Apr 2021 07:56
- Forum: Tips & Tricks, Questions & Answers
- Topic: How to set View for selected folders only
- Replies: 1
- Views: 22
Re: How to set View for selected folders only
Apply the default configuration via Menu - View - Folder View Settings - Define this Folder View as Default Then go into a folder that needs a different view, set it up and save it via Menu - View - Folder View Settings - Save Folder View Don't forget to save your settings (Menu - File - Save Settin...
- 17 Apr 2021 14:23
- Forum: Tips & Tricks, Questions & Answers
- Topic: Script to copy filename into Comment field
- Replies: 2
- Views: 190
Re: Script to copy filename into Comment field
Code: Select all
foreach($item, <get SelectedItemsPathNames |>, , "e") {
tag gpc($item, "file"), $item, 2, 1;
}
- 17 Apr 2021 10:01
- Forum: Bug Reports
- Topic: Right click menu hanging XYPlorer
- Replies: 2
- Views: 285
Re: Right click menu hanging XYPlorer
Is this disabled?
Configuration | General | Menus, Mouse, Usability | Context Menus | Hide shell extensions from shell context menu
Configuration | General | Menus, Mouse, Usability | Context Menus | Hide shell extensions from shell context menu
- 16 Apr 2021 08:39
- Forum: Bug Reports
- Topic: There is one more folder in the PaperFolder. Why? Thank you.
- Replies: 3
- Views: 401
Re: There is one more folder in the PaperFolder. Why? Thank you.
I call that a bug (can reproduce it in a fresh instance of the current beta)...
That folder is not stored inside the paper folder but only shown in the list.
I'll move this thread
That folder is not stored inside the paper folder but only shown in the list.
I'll move this thread
- 15 Apr 2021 14:45
- Forum: Tips & Tricks, Questions & Answers
- Topic: Flatten Folder Hotkey?
- Replies: 3
- Views: 177
Re: Flatten Folder Hotkey?
But you did read the help file entry for it?
flags (in any order)
n: No safety prompt. Nerves like steel.
- 15 Apr 2021 14:37
- Forum: Tips & Tricks, Questions & Answers
- Topic: Flatten Folder Hotkey?
- Replies: 3
- Views: 177
Re: Flatten Folder Hotkey?
There is only the script command for it:
so bind that as a keyboard shortcut to a user defined command...
flattenfolder()
so bind that as a keyboard shortcut to a user defined command...
- 15 Apr 2021 12:04
- Forum: Tips & Tricks, Questions & Answers
- Topic: Last item selected border
- Replies: 4
- Views: 368
Re: Last item selected border
You can't clear the focus. If you don't like the current behavior:
Create a user defined command from the category "Run Script"
with this:
and bind F2 to it...
Create a user defined command from the category "Run Script"
with this:
Code: Select all
if (<get SelectedItemsNames>) { #172; }
- 15 Apr 2021 01:32
- Forum: Tips & Tricks, Questions & Answers
- Topic: Instance Specific Tags in GUI
- Replies: 11
- Views: 452
- 13 Apr 2021 21:21
- Forum: Bug Reports
- Topic: Will not set as default file manager
- Replies: 22
- Views: 3246
Re: Will not set as default file manager
Get
https://docs.microsoft.com/en-us/sysint ... ds/procmon
and capture MediaMonkey's activity (in the registry) when you call that function and you know if it's hardcoded or not...
https://docs.microsoft.com/en-us/sysint ... ds/procmon
and capture MediaMonkey's activity (in the registry) when you call that function and you know if it's hardcoded or not...
- 12 Apr 2021 21:34
- Forum: Wishes
- Topic: Show labels in the tree pane
- Replies: 7
- Views: 432
Re: Show labels in the tree pane
Label Color in Tree / Mini Tree
- 11 Apr 2021 07:00
- Forum: Tips & Tricks, Questions & Answers
- Topic: Showing Rating
- Replies: 11
- Views: 345
Re: Showing Rating
Anyway, the script your gently provided to me using mediainfo open as number of mediainfo windows as the number of file... i.e. for a 575 files folder, I get 575 mediainfo session that I have to close manually one by one ... crazy !! https://www.xyplorer.com/xyfc/viewtopic.php?p=186708#p186708 Get ...
- 10 Apr 2021 12:45
- Forum: Tips & Tricks, Questions & Answers
- Topic: Context Menu / Missing entries
- Replies: 2
- Views: 128
Re: Context Menu / Missing entries
While you could make your own context menu for it, it wouldn't work as the original one (it doesn't show any gui but only a requester if the action was successful or not)... This would be saved as a .reg file and then merged via right click and the context menu item "Merge" Windows Registry Editor V...
- 10 Apr 2021 10:05
- Forum: Tips & Tricks, Questions & Answers
- Topic: Showing Rating
- Replies: 11
- Views: 345
Re: Showing Rating
The problem is not to write a simple script that returns the "#tag.rating wmp" for .flac and the normal rating for .mp3... if (<cc_ext> LikeI "flac") { return property("#Tag.Rating WMP", <cc_item>); } elseif (<cc_ext> LikeI "mp3") { return property("#19", <cc_item>); } The problem is, that all these...
- 09 Apr 2021 13:39
- Forum: Tips & Tricks, Questions & Answers
- Topic: Showing Rating
- Replies: 11
- Views: 345
Re: Showing Rating
I'm currently not at home and have only limited testing possibilities... I'm afraid you can't do that without an external tool in XY. Get the CLI version of MediaInfo from https://mediaarea.net/en/MediaInfo/Download/Windows and use this script as a custom column script (you need to adapt the path!) ...