I was disapointed with the "and / or" implementation for autoplaylists.
iTunes does it this way, but it is limited. Winamp does it better.
I described the issue here:
http://www.mediamonkey.com/forum/viewto ... t=advanced
ANYWAY,
I was making filters today and trying to make them quicker I gave a few characters a try..
I found that this is possible in a limited way (but far less limited than not being possible at all).
note that in MM3, you can use;
";" in the search box to specify "OR"
" " (a space) in the search box to specify "AND"
"" and surround a string with quotes to specific an EXACT string..
well well... turns out these work in filters and autoplaylists also!
But remember, the search box's default behaviour for a space is AND.. but the default in a filter or autoplaylist is EXACT
so..
normal example:
Genre contains Christmas and artist contains Bing Crosby
(constructed like below)
Code: Select all
Match ALL of these criteria
Genre contains:
Christmas
Artist contains:
Bing Crosby
but I realise that the genre 'could' be "xmas"
so...
advanced example:
Genre contains ( Christmas OR Xmas ) AND Artist contains Bing Crosby
This is not usually possible because you can only use AND or OR... not both in a complicated equation...
but you can - just write it like this:
Code: Select all
Match ALL of these criteria
Genre contains:
Christmas;Xmas
Artist contains:
Bing Crosby
or.. as another example.. if I want a title to contain both the words "love" and "silly", in the search box I would write:
and it would treat the space as an AND
but in a filter the string would be treated as if you wrote it like this
which means it has to be that exact order
but if you add extra quotes to the imaginary ones, you can still do AND
Sorry about making this post a bit convoluted... hope you understood what's possible.
DEV'S... I don't know if you meant this to be possible or if it's a side effect of adding the new search commands, but it's really useful.. so please add an information button to the criteria popup dialogs in filters and autoplaylists that describes the ability to use these logical operators for those who don't see this post.
Dale
I was disapointed with the "and / or" implementation for autoplaylists.
iTunes does it this way, but it is limited. Winamp does it better.
I described the issue here:
http://www.mediamonkey.com/forum/viewtopic.php?t=15411&highlight=advanced
ANYWAY,
I was making filters today and trying to make them quicker I gave a few characters a try..
I found that this is possible in a limited way (but far less limited than not being possible at all).
note that in MM3, you can use;
";" in the search box to specify "OR"
" " (a space) in the search box to specify "AND"
"" and surround a string with quotes to specific an EXACT string..
well well... turns out these work in filters and autoplaylists also!
But remember, the search box's default behaviour for a space is AND.. but the default in a filter or autoplaylist is EXACT
so.. [i]normal example:[/i]
[b]Genre contains Christmas and artist contains Bing Crosby[/b]
(constructed like below)
[code]Match ALL of these criteria
Genre contains:
Christmas
Artist contains:
Bing Crosby
[/code]
but I realise that the genre 'could' be "xmas"
so... [i]advanced example:[/i]
[b]Genre contains ( Christmas OR Xmas ) AND Artist contains Bing Crosby[/b]
This is not usually possible because you can only use AND or OR... not both in a complicated equation...
but you can - just write it like this:
[code]Match ALL of these criteria
Genre contains:
Christmas;Xmas
Artist contains:
Bing Crosby[/code]
or.. as another example.. if I want a title to contain both the words "love" and "silly", in the search box I would write:
[code]love silly[/code]
and it would treat the space as an AND
but in a filter the string would be treated as if you wrote it like this
[code]"love silly"[/code]
which means it has to be that exact order
but if you add extra quotes to the imaginary ones, you can still do AND
[code]title contains:
"love" "silly"[/code]
Sorry about making this post a bit convoluted... hope you understood what's possible.
[b]DEV'S... I don't know if you meant this to be possible or if it's a side effect of adding the new search commands, but it's really useful.. so please add an information button to the criteria popup dialogs in filters and autoplaylists that describes the ability to use these logical operators for those who don't see this post.[/b]
Dale