Ok I'm building a simple webpage right now for Web Design class using Dreamweaver. I decided to add an embedded youtube video into it, and it works fine. But, everytime the page loads up the yellow "active x control" warning bar pops up. How do i get it to not pop up for others viewing the page? I notice at the home page of clutchfans.net, there's a youtube video there and the warning doesnt popup like I'm trying to download something. Is kinda annoying. thanks,
I'm also having this same issue. For Mozilla Firefox the youtube video will come up but if I open it in Internet Explorer I get the yellow active x control warning bar pop
First of all, THAT'S WHAT SHE SAID! :grin: Post your partial code that contains the YouTurd embed here, sir. Use the [ code ] tags, please. Code: //code goes here. Let's see why it doesn't show a warning here but on your site it does. The "active X warning" is not part of Firefox's "warning system" like in I.E., sir. You will NEVER get that. You should thank the Mozilla's peeps for that.
I don't care if I get it. I care about the people who visit my site that use Internet Explorer. I want them to be able to see my video instead of not seeing it because of the Internet Explorer Active X yellow badge thing.
Still, what's your code...? Let's see where you're activating "Active X", sir. It just might be JAVASCRIPT code or ACTIVE X code of which you're unaware.
try this: name a text file: AC_RunActiveContent.js and paste in this content Now put this in your (head) code: (script src="AC_RunActiveContent.js" type="text/javascript"></script) make the above brackets and not parentheses <> - no () more info: http://www.adobe.com/devnet/activecontent/articles/devletter.html .
Spoiler Code: !DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" html lang="en"> head> meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> meta name="Home"> title>Home/title> style type="text/css"> !-- body {margin: 0px; padding: 0px;} a:link {color: #3d493b;} a:visited {color: #78ac70;} a:hover {color: #3d493b;} a:active {color: #3d493b;} .Normal-P { margin:0.0px 0.0px 0.0px 0.0px; text-align:left; font-weight:400; } .Normal-C { font-family:"Trebuchet MS", sans-serif; font-size:11.0px; line-height:20.0px; color:#576b54; } .Normal-C0 { font-family:"Trebuchet MS", sans-serif; font-size:52.0px; line-height:1.27em; color:#576b54; } .Normal-C1 { font-family:"Trebuchet MS", sans-serif; font-size:30.0px; line-height:1.27em; color:#576b54; } .Normal-C2 { font-family:"Trebuchet MS", sans-serif; font-size:13.0px; line-height:1.38em; } .Normal-C3 { font-family:"Trebuchet MS", sans-serif; font-size:13.0px; line-height:1.38em; text-decoration: underline; } .Normal-C4 { font-family:"Trebuchet MS", sans-serif; font-size:13.0px; line-height:1.38em; text-decoration: underline; } .Normal-C5 { font-family:"Trebuchet MS", sans-serif; font-size:22.0px; line-height:1.23em; color:#576b54; } --> /style>script type="text/javascript">!-- var blankSrc = "wpscripts/blank.gif"; -->/script> script src="wpscripts/jspngfix.js" type="text/javascript">/script> /head> object width="439" height="401"> param name="movie" value="http://www.youtube.com/v/gzwkFLWqcis">/param> param name="wmode" value="transparent">/param> embed src="http://www.youtube.com/v/gzwkFLWqcis" type="application/x-shockwave-flash" wmode="transparent" width="439" height="401">/embed> /object> body text="#000000" style="background: #d4d9d9; text-align:center; height:1030px;"> div style="background: transparent; position:relative;width:750px;height:1030px;margin-left:auto;margin-right:auto;"> div style="position:absolute; left:0px; top:45px; width:750px; height:950px;"> <img src="wpimages/wp7f2ea0f0.png" width="108" height="24" border="0" id="pic_11" name="pic_11" title="" alt="" onload="OnLoadPngFix()">/div> div style="position:absolute; left:4px; top:782px; width:155px; height:48px;"> div class="Normal-P"> <span class="Normal-C2">The Video below may not play in all Internet Explorer Browsers. If the video below will not play for you, please click /span><span class="Normal-C3">HERE/span>/div> /div> div style="position:absolute; left:58px; top:825px; width:21px; height:45px;"> div class="Normal-P"> span class="Normal-C4">br>/span> span class="Normal-C5">/span></div> /div> /div> /body> /html>
I think this is do to you running it locally and IE's local zone is set to prompt when an ActiveX component needs to run (which that Object tag uses). If you upload it to a web server, do you still see the bar?