kylcrow 0 Junior Poster

This will probably sound like an ignorant question, but here it is.

I am trying to embed a silverlight slideshow control into an html page, and to do so I need an xml config file. Without the xml, the control shows up (it is blank, but it at least shows up). With the XML, nothing shows up at all. I am under the impression that I am missing something crucial for the xml to work.

Here is the HTML:

<html>
	<head>
    	<title>Slide.Show</title>
			<script type="text/javascript" src="slideshow/silverlight.js"></script>
			<script type="text/javascript" src="slideshow/SlideShow.js"></script>
	</head>
    <body>
    	<script type="text/javascript">	
		new SlideShow.Control(new SlideShow.XmlConfigProvider(); 
        </script>
    </body>
</html>

Here is the config.xml:

<configuration width="600" height="400" background="Silver"> 
	<modules> 
		<module type="SlideViewer" /> 
		<module type="ProgressBar" /> 
		<module type="SlideDescription" /> 
		<module type="NavigationTray"> 
			<option name="thumbnailViewer.left" value="83" /> 
			</module> 
	</modules> 
	<transitions> 
		<transition type="FadeTransition" name="CrossFadeTransition" /> 
		<transition type="WipeTransition" name="WipeRightTransition"> 
			<option name="direction" value="Right" /> 
		</transition> 
	</transitions> 
</configuration>