Is this posible?

big hello to everyone…this is my first post here.

you probably heard of that image gallery expose by slooz, demo is here http://www.slooz.com/photos.php

i like the way that album behaves. uses xml for loading images… but i dont like the “select album” selection. I would like to go directly to album…

OK here is how story goes:

I have some images in my site (in swf), and when you click on one of the image, you will be directed to expose album…ok, that is posible but, only for one default album…(with <loadfirst/> action)…as i will have over 50 albums, i cant use that…so i wanted to ask if it’s possible to somehow check value of variables in XML code…

like this: i click on button in swf and action passes to xml which checks which album is selected and marks it like <loadfirst/> album

here is the code for XML file


<?xml version="1.0" encoding="utf-8"?>
<expose version="2.1">
  <collection>
    <collection>
      <title>A collection</title>
      <album>
      <loadfirst />
        <title>An album</title>
        <thumb>
          <url>thumb.jpg</url>
        </thumb>
        <contentnumber>10</contentnumber>
        <contentxmlurl>album_somealbum.xml</contentxmlurl>
      </album>
    </collection>
    <album>
      <title>Another album</title>
      <description>Pictures of my vacation</description>
      <contentnumber>20</contentnumber>
      <contentxmlurl>album_myotheralbum.xml</contentxmlurl>
    </album>
  </collection>
</expose>

thanks…