Does anyone know what is the easiest way to copy a mask? I have a mask which I want to use as a starting point for a similar new mask.
I'm probably overlooking something, but I can't find this.
Thanks for your response.
Regards, Willy

willyvds wrote:Does anyone know what is the easiest way to copy a mask? I have a mask which I want to use as a starting point for a similar new mask.
willyvds wrote:I want to add, but I do not get that option....
ScottBolton wrote:So for my question on this forum, the first post would be "How do I get to see my nodes"
theax wrote:I cant see the magic nodes tree nodes thru the upnp-server. Is this possible or am i barking up the wrong tree?
Jondar wrote:I'm looking for files that have duplicate titles, but when checking for duplicates, they ignore anything in the title that's included inside square brackets '[]' at the end of the title.
Example: "SongTitle" and "SongTitle [Cool Mix]" would be considered the same song.
<Group|Name:Duplicates...|Show tracks:No>\Tracks with same Title ignoring text in square brackets '[...]' at the end|Icon:Top level|Filter:SubStr(Songs.SongTitle || ' ', Length(RTrim(Songs.SongTitle, Replace(Songs.SongTitle, '[', ''))) - 1, -9999) COLLATE IUnicode IN (SELECT SubStr(SongTitle || ' ', Length(RTrim(SongTitle, Replace(SongTitle, '[', ''))) - 1, -9999) COLLATE IUnicode AS GroupField FROM Songs GROUP BY GroupField HAVING Count(*) > 1)\<Title|Trim:1>\<Title with artist|Statistic:Count(All)><Group|Name:Duplicates...|Show tracks:No>\Tracks with same Title ignoring text in square brackets '[...]' at the end|Icon:Top level|Filter:CASE WHEN Songs.SongTitle <> Replace(Songs.SongTitle, '[', '') THEN RTrim(SubStr(Songs.SongTitle, 1, Length(RTrim(Songs.SongTitle, Replace(Songs.SongTitle, '[', ''))) - 1)) ELSE Songs.SongTitle END COLLATE IUnicode IN (SELECT CASE WHEN SongTitle <> Replace(SongTitle, '[', '') THEN RTrim(SubStr(SongTitle, 1, Length(RTrim(SongTitle, Replace(SongTitle, '[', ''))) - 1)) ELSE SongTitle END COLLATE IUnicode AS GroupField FROM Songs GROUP BY GroupField HAVING Count(*) > 1)\<Title|Trim:1>\<Title with artist|Statistic:Count(All)>ZvezdanD wrote:I don't understand if you want to get only duplicates where at least one have [] at the end, or you want any combination of duplicates. Also, you didn't mention if you want to consider the Artist name or just Title. Anyway, you could try this mask:
- Code: Select all
<Group|Name:Duplicates...|Show tracks:No>\Tracks with same Title ignoring text in square brackets '[...]' at the end|Icon:Top level|Filter:SubStr(Songs.SongTitle || ' ', Length(RTrim(Songs.SongTitle, Replace(Songs.SongTitle, '[', ''))) - 1, -9999) COLLATE IUnicode IN (SELECT SubStr(SongTitle || ' ', Length(RTrim(SongTitle, Replace(SongTitle, '[', ''))) - 1, -9999) COLLATE IUnicode AS GroupField FROM Songs GROUP BY GroupField HAVING Count(*) > 1)\<Title|Trim:1>\<Title with artist|Statistic:Count(All)>
<Group|name:My Magic Nodes|Show tracks:Yes>\All New Albums|Icon:Top level|Child of:Library|Filter:<Path> Like 'C:\New Music%'\<Folder|Right of:New Music|Show rank:Yes>Viper21 wrote:However, MagicNodes won't let me include the backslash in the "Right of" local qualifier so as to hide it.