I'm trying to use the MediaAttributes collection to get all of the params out of a playlist.
<ASX version="3.0">
<TITLE>My Playlist</TITLE>
<AUTHOR>Me.</AUTHOR>
<COPYRIGHT>Copyright (c)2007</COPYRIGHT>
<ENTRY CLIENTSKIP="NO">
<TITLE>Video 1</TITLE>
<REF href="video1.wmv"/>
<PARAM NAME="link1" VALUE="http://www.domain.com/link1"/>
<PARAM NAME="CLICKTHRU1" VALUE="http://www.domain.com/click?link1"/>
</ENTRY>
</ASX>
When I follow the example at http://msdn2.microsoft.com/en-us/library/bb412367.aspx , It only shows the first TITLE and AUTHOR tags, which are outside of the ENTRY. I'd like to be able to get the REF and PARAM values out of the playlist also (from within the ENTRY tag). Is this possible? The reference materials don't make any mention of how to do this. Thanks