Hi,
I have a flash movie that I want to run on a dnn page. What is the best way? I dont know where to put any files or anythlng. I have some .swf's (the video, a controller and a preload), acouple .js, .xml, a .css, a .gif and an html. The html file plays the video when opened in a browser, here is the code:
<!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>
<!-- saved from url=(0025)http://www.techsmith.com/ -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="DC.date" content="Wednesday, April 25, 2007" />
<meta name="DC.language" content="ENU" />
<meta name="DC.title" content="Video 2 project" />
<meta name="itunes.block" content="No" />
<meta name="itunes.explicit" content="Clean" />
<meta name="itunes.category" content="Arts" />
<title>Created by Camtasia Studio 4</title>
<script type="text/javascript" src="swfobject.js"></script>
<script type="text/javascript" src="CPNE Video.js"></script>
<link rel="stylesheet" type="text/css" href="FlashTemplate.css"/>
</head>
<body id="cs_flashBody" >
<div id="flashcontent">
<div id="cs_noexpressUpdate">
<p>The Camtasia Studio video content presented here requires JavaScript to be enabled and the latest version of the Macromedia Flash Player. If you are you using a browser with JavaScript disabled please enable it now. Otherwise, please update your version of the free Flash Player by <a href="http://www.macromedia.com/go/getflashplayer">downloading here</a>. </p>
</div>
</div>
<script type="text/javascript">
// <![CDATA[
var fo = new SWFObject( "CPNE Video_controller.swf", "CPNE Video_controller.swf", "320", "275", "7", "#FFFFFF", false, "best" );
fo.addVariable( "csConfigFile", "CPNE Video_config.xml" );
fo.addVariable( "csColor" , "FFFFFF" );
fo.addVariable( "csPreloader" , "CPNE Video_preload.swf" );
if( args.movie )
{
fo.addVariable( "csFilesetBookmark", args.movie );
}
fo.write("flashcontent");
// ]]>
</script>
</body>
</html>
So, what can I do with this? thanks!