i need to make the two flash files hyperlinks work
why does this not happen with the current code?
<HTML>
<HEAD>
<META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
<TITLE></TITLE>
<script LANGUAGE="javascript">
<!--
var count
count=0
function restart1(){
document.f1.fla1.FrameNum = 1
}
function play1(){
if (document.f1.fla1.FrameNum < document.f1.fla1.TotalFrames){
document.f1.fla1.Play()
document.f1.fla1.Loop = false
}
}
function go1(){
window.location = "boo.html"
}
function restart2(){
document.f1.fla2.FrameNum = 1
}
function play2(){
if (document.f1.fla2.FrameNum < document.f1.fla2.TotalFrames){
document.f1.fla2.Play()
document.f1.fla2.Loop = false
}
}
//-->
</script>
</head>
<body scroll=no leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" bgcolor="#000000">
<form name="f1">
<table>
<tr>
<td><a href="boo.html" onmouseover="play1()" onmouseout="restart1()" onmousedown="go1()">
<object id="fla1" classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000" codebase=" width="100" height="20">
<param name=movie value="pro.swf">
<param name=play value="false">
<param name="SCALE" value="noborder">
<param name="BGCOLOR" value="#000000">
<param name="LOOP" value="false">
<embed src="pro.swf" scale="noborder" pluginspage=" type="application/x-shockwave-flash" width="200" height="100" bgcolor="#000000">
</embed>
</object></a>
</td>
</tr>
<tr>
<td><a href="boo.html" onmouseover="play2()" onmouseout="restart2()">
<object id="fla2" classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000" codebase=" width="100" height="20">
<param name=movie value="cap.swf">
<param name=play value="false">
<param name="SCALE" value="noborder">
<param name="BGCOLOR" value="#000000">
<param name="LOOP" value="false">
<embed src="cap.swf" scale="noborder" pluginspage=" type="application/x-shockwave-flash" width="200" height="100" bgcolor="#000000">
</embed>
</object></a>
</td>
</tr>
</table
</form>
</body>
</html>
why does this not happen with the current code?
<HTML>
<HEAD>
<META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
<TITLE></TITLE>
<script LANGUAGE="javascript">
<!--
var count
count=0
function restart1(){
document.f1.fla1.FrameNum = 1
}
function play1(){
if (document.f1.fla1.FrameNum < document.f1.fla1.TotalFrames){
document.f1.fla1.Play()
document.f1.fla1.Loop = false
}
}
function go1(){
window.location = "boo.html"
}
function restart2(){
document.f1.fla2.FrameNum = 1
}
function play2(){
if (document.f1.fla2.FrameNum < document.f1.fla2.TotalFrames){
document.f1.fla2.Play()
document.f1.fla2.Loop = false
}
}
//-->
</script>
</head>
<body scroll=no leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" bgcolor="#000000">
<form name="f1">
<table>
<tr>
<td><a href="boo.html" onmouseover="play1()" onmouseout="restart1()" onmousedown="go1()">
<object id="fla1" classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000" codebase=" width="100" height="20">
<param name=movie value="pro.swf">
<param name=play value="false">
<param name="SCALE" value="noborder">
<param name="BGCOLOR" value="#000000">
<param name="LOOP" value="false">
<embed src="pro.swf" scale="noborder" pluginspage=" type="application/x-shockwave-flash" width="200" height="100" bgcolor="#000000">
</embed>
</object></a>
</td>
</tr>
<tr>
<td><a href="boo.html" onmouseover="play2()" onmouseout="restart2()">
<object id="fla2" classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000" codebase=" width="100" height="20">
<param name=movie value="cap.swf">
<param name=play value="false">
<param name="SCALE" value="noborder">
<param name="BGCOLOR" value="#000000">
<param name="LOOP" value="false">
<embed src="cap.swf" scale="noborder" pluginspage=" type="application/x-shockwave-flash" width="200" height="100" bgcolor="#000000">
</embed>
</object></a>
</td>
</tr>
</table
</form>
</body>
</html>