 
Extract the contents of the zip file.
 
This is what you get by way of files:
 
images(folder with images)
AC_RunActiveContent.js
features.html
features.swf
features.xml
 
 
Everything should work as is by opening the html file.

The real function is in the xml file: feature.xml. So you won't need to worry about flash coding.

 
To change the content, open xml in a text editor of your choice and you will see this:
 
<?xml version='1.0' encoding='UTF-8'?>
<set>
<slide>
 <loc>images/op_inheritance.jpg</loc>
 <link>http://www.onpointradio.org/shows/2008/12/inheritance/</link>
</slide>
<slide>
 <loc>images/me_frostnixon.jpg</loc>
 <link>http://www.wbur.org/news/2008/81908_20081210.asp</link>
</slide>
<slide>
 <loc>images/hn_taza.jpg</loc>
 <link>http://www.here-now.org/shows/2008/12/20081210_13.asp</link>
</slide>
<slide>
 <loc>images/op_books08.jpg</loc>
 <link>http://www.onpointradio.org/shows/2008/12/the-books-of-08/</link>
</slide>
<slide>
 <loc>images/thebottomline.jpg</loc>
 <link>http://bottomline.wbur.org/</link>
</slide>
<slide>
 <loc>images/pubradiokitchen.jpg</loc>
 <link>http://publicradiokitchen.wordpress.com/</link>
</slide>
</set>
 
 
 
Each slide in the flash app is controlled by these nodes:
 
<set>
  <slide>
     <loc>images/op_inheritance.jpg</loc>
     <link>http://www.onpointradio.org/shows/2008/12/inheritance/</link>
  </slide>
</set>
 
set = the slideshow
slide = the slide (goes inside the Set node)
loc = the image location (you can use relative or absolute addresses)
link = directed url (again, you can use relative or absolute addresses)
(both the loc and link nodes are located inside the Set node)
 
Be sure to close all nodes with closing tags...(ie. <loc> </loc>) or the flash app will freeze.

 
