flash slideshows

Rhys

TPF Noob!
Joined
Jan 26, 2008
Messages
975
Reaction score
0
Location
Columbia, SC
Can others edit my Photos
Photos OK to edit
I was just playing with a flash slideshow that I downloaded.

I was wondering whether anybody could explain where I control the rotational speed and the general movement of the slideshow as I'd kinda like to eliminate the vertical movements. I'll paste the two files here since they're pretty short.

File 1 (ex5.xml)
<slide_show>
<options>
<background>0xFFFFFF</background> <!-- 0xRRGGBB -->
<interaction>
<rotation>mouse</rotation> <!-- auto, mouse, keyboard -->
<view_point>mouse</view_point> <!-- none, mouse, keyboard -->
<speed>180</speed> <!-- [-360,360] -->
</interaction>
</options>

<photo>../../flowers/DCP_0730.jpg</photo>
<photo>../../flowers/DCP_0731.jpg</photo>
<photo>../../flowers/DCP_0732.jpg</photo>
<photo>../../flowers/DCP_0733.jpg</photo>
<photo>../../flowers/DCP_0734.jpg</photo>
</slide_show>

File2 - EX5.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1" />
<title>Free Flash SlideShows - Carousel - Example 5</title>
<meta name="Author" content="Saverio Caminiti" />

<style type="text/css">
html, body {
height: 100%;
margin: 0px;
border: 0px;
padding: 0px;
color: black;
background-color: white;
}
.movie {
width: 100%;
height: 100%;
}
</style>
</head>

<body>

<!-- IE (et. al) Object -->
<object class="movie" id="Carousel__ie"
classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0">
<param name="movie" value="../Carousel.swf" />
<param name="flashvars" value="xmlfile=ex5.xml&loaderColor=0xCCCCCC" />
<param name="quality" value="high" />
<param name="bgcolor" value="#FFFFFF" />
<!--[if !IE]>-->

<!-- Firefox (et. al) Object -->
<object class="movie" id="Carousel__ff"
type="application/x-shockwave-flash"
data="../Carousel.swf">
<param name="movie" value="../Carousel.swf" />
<param name="flashvars" value="xmlfile=ex5.xml&loaderColor=0xCCCCCC" />
<param name="quality" value="high" />
<param name="bgcolor" value="#FFFFFF" />
<param name="pluginurl" value="http://www.macromedia.com/go/getflashplayer"/>

<!-- No plugin -->
<p>This page require <a href="http://www.adobe.com/">Adobe Flash 9.0</a> (or higher) plug in.</p>

</object>

<!--<![endif]-->
</object>

<!-- Google Analitics call -->
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
var pageTracker = _gat._getTracker("UA-2066058-3");
pageTracker._initData();
pageTracker._trackPageview();
</script>
<!-- Google Analitics call -->
</body>
</html>
 
I believe you'd actually need to edit the flash file... This isn't something you can do with the webpage source code.
 

Most reactions

Back
Top