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
Search found 10076 matches
- 16 Apr 2021 08:39
- Forum: Bug Reports
- Topic: There is one more folder in the PaperFolder. Why? Thank you.
- Replies: 1
- Views: 108
- 15 Apr 2021 14:45
- Forum: Tips & Tricks, Questions & Answers
- Topic: Flatten Folder Hotkey?
- Replies: 3
- Views: 49
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: 49
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: 241
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: 10
- Views: 292
- 13 Apr 2021 21:21
- Forum: Bug Reports
- Topic: Will not set as default file manager
- Replies: 22
- Views: 2999
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: 4
- Views: 154
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: 193
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: 116
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: 193
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: 193
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!) ...
- 09 Apr 2021 10:28
- Forum: Tips & Tricks, Questions & Answers
- Topic: Showing Rating
- Replies: 11
- Views: 193
Re: Showing Rating
Upload a .flac and a .mp3 that contain these meta data...
- 05 Apr 2021 23:17
- Forum: Bug Reports
- Topic: rename special Aaa Aaa.aaa stopped working for me
- Replies: 6
- Views: 123
- 05 Apr 2021 23:11
- Forum: Bug Reports
- Topic: rename special Aaa Aaa.aaa stopped working for me
- Replies: 6
- Views: 123
Re: rename special Aaa Aaa.aaa stopped working for me
Can't confirm...
- 05 Apr 2021 16:24
- Forum: Wishes
- Topic: Modify SC substr to obtain substrings divided by a separator
- Replies: 3
- Views: 74
Re: Modify SC substr to obtain substrings divided by a separator
No while or foreach loop necessary... You're missing the flags field of gettoken() $recent15 = gettoken($recent, 15, <crlf>, , 1); or if you really need a range (with a higher value than 1 for $start) function GetRange($string, $start, $end, $sep=<crlf>) { if ($start > 1) { $string = gettoken($strin...