Problem: I want to listen tonight to a Baroque opera. I have no particular composer or performers in mind. Can I use Asset to do it?
It appears that the answer is no. I hope I am wrong.
I tagged several items with
I assumed I could use Dynamic Browsing (which, reading between the lines, seems to be selection by Boolean operators) to do:
which would yield only Baroque operas.
But it turns out that, if one uses the multiple values in the same tag, Dynamic Browsing does OR, not AND, operations. The result was
So I got all the operas plus all the Baroque music, whether opera or not.
This agrees with the example provided in the few pages of instructions available for Asset, it's just that I did not read it carefully enough.
The solution in the above-mentioned pages is to use [Exclude], which, judging from the example, is the same thing as the NOT operator. The problem is that STYLE can take too many values other than "Opera", so [Exclude] is not at all practical.
Another solution would be to use a different tag for "Opera", but the developer doesn't give us a list of tags Asset accepts. Or make "Opera" a different genre; but, applied consistently, this would make the genre list unwieldy, and not just for classical music.
Any other solutions?
It appears that the answer is no. I hope I am wrong.
I tagged several items with
Code:
GENRE=Classical STYLE=Baroque STYLE=Opera
Code:
GENRE=Classical AND STYLE=Baroque AND STYLE=Opera
But it turns out that, if one uses the multiple values in the same tag, Dynamic Browsing does OR, not AND, operations. The result was
Code:
GENRE=Classical AND (STYLE=Baroque OR STYLE=Opera)
This agrees with the example provided in the few pages of instructions available for Asset, it's just that I did not read it carefully enough.
The solution in the above-mentioned pages is to use [Exclude], which, judging from the example, is the same thing as the NOT operator. The problem is that STYLE can take too many values other than "Opera", so [Exclude] is not at all practical.
Another solution would be to use a different tag for "Opera", but the developer doesn't give us a list of tags Asset accepts. Or make "Opera" a different genre; but, applied consistently, this would make the genre list unwieldy, and not just for classical music.
Any other solutions?
Comment