PDA

View Full Version : Wed Design & Development student seeking knowledge



oalvarado
26 Jun 2010, 05:24 AM
Hello all,

I'm hoping someone can help me out here, I'm trying to remove the active x control from a web page that has a flash video on it. My questions are: Is there a way to remove IE active x warning? if no can I embed the web page with the active x control and how do I do that? :confused:

I hope you guys understand what I'm trying to do and what I'm asking in my questions. Below is the code for the page.

Thanks in advace.



<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<link href="../css/Index_CSS.css" rel="stylesheet" type="text/css" />
<style type="text/css">
.container .fltrt table tr td {
text-align: center;
}
.fltrt {
font-family: Comic Sans MS, cursive;
color: #004646;
}
div {
}
.container .fltrt_intro #FlashID {
position: fixed;
}
</style>
</head>

<body>

<div class="container">

<div class="fltlft">
<img src="../image/diente.PNG" width="163" height="193" />
<!-- end fltlft --></div>



<div class="fltrt">

<table width="50" border="0" align="center">
<tr>
<td><a href="../html español/index_esp.html"><img src="../image/mexico.PNG" width="45" height="26" alt="Español" />MEX</a></td>
<td>&nbsp;</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
<td><a href="index.html"><img src="../image/usa.PNG" width="45" height="24" alt="English" />USA</a></td>
</tr>
</table>
Click here to enter Site<!-- end fltrt --></div>

<div class="fltrt_intro">
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="336" height="280" id="FlashID" title="Intro Movie">
<param name="movie" value="../media/Memo_home.swf" />
<param name="quality" value="high" />
<param name="wmode" value="opaque" />
<param name="swfversion" value="6.0.65.0" />
<!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
<param name="expressinstall" value="../Scripts/expressInstall.swf" />
<!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
<!--[if !IE]>-->
<object type="application/x-shockwave-flash" data="../media/Memo_home.swf" width="336" height="280">
<!--<![endif]-->
<param name="quality" value="high" />
<param name="wmode" value="opaque" />
<param name="swfversion" value="6.0.65.0" />
<param name="expressinstall" value="../Scripts/expressInstall.swf" />
<!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
<div>
<h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
<p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
</div>
<!--[if !IE]>-->
</object>
<!--<![endif]-->
</object>
<!-- end fltrt --> </div>

<!-- end .container --></div>
</body>