Quote Originally Posted by BLOWERS View Post
I'm probably not explaining myself very clearly! If I script: <dax:if(remastered)><img width=20 src="c:\program files\orangecd\palette1.ico" /></dax:if> I get my icon that shows the album is remastered. But this also shows when I have checked only one track as being remastered! I need the syntax for saying "if ALL TRACKS remastered etc etc", as I only want my remastered icon to show on the album page IF ALL TRACKS ARE REMASTERED!!
I am afraid it's not doable with current template syntax. Album context simply doesn't offer that level of granularity.

I am sure it can be achieved with JavaScript or CSS hack. Let me think about this overnight, there are several possibilities and I am not sure which is better.

The idea is approximately this (writing from my head, never actually tested it

Code:
<script type="text/javascript">
var all_remastered=true;
<dax:track><dax:if(!trackremastered)>all_remastered=false;</dax:if></dax:track>
if(all_remastered){
  document.write('<img src="...">');
}
</script>