I have been trying to send variables to FLASH but have been unable to do so with FLV files.
I have gone through many tutorials and none talk about video files. I want to load FLV into their specific HTML files (this will be done thorugh ColdFusion).
I have a CF document with the following code
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<TITLE>Untitled Document</TITLE>
</HEAD>
<BODY>
<OBJECT CLASSID="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" CODEBASE="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" WIDTH="300" HEIGHT="200">
<PARAM NAME="movie" VALUE="cfm.swf?video=<CFOUTPUT>#url.video#</CFOUTPUT>">
<PARAM NAME="quality" VALUE="high">
<EMBED SRC="cfm.swf?video=<CFOUTPUT>#url.video#</CFOUTPUT>" QUALITY="high" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer" TYPE="application/x-shockwave-flash" WIDTH="300" HEIGHT="200"></EMBED>
</OBJECT>
</BODY>
</HTM
I have an instance of the FLV playback component and I named it “video”, then I have the following AS code on frame #1
loadVariables("cfm.swf?video=#url.video#", this.video);
I can’t figure out what is wrong with it. Any help would be greatly appreciated.
JH