Feedback
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar BRILLIANT 3/22/2006 7:13 AM | Me test
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar Works for me! How did you come up with this solution, and why does it work?
Thanks! 3/22/2006 12:29 PM | chris
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar The key is that the embed, object tags must be loaded from a imported script file. So all this does is set the tags right back to their current values... and IE seems to think that counts! 3/22/2006 12:37 PM | Matt Watson
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar I really hope that this fix doesn't become obsolete because of some patch. This is the only lightweight solution that I've come across; every other solutions requires significant reworking.
Thanks again. 3/22/2006 2:28 PM | chris
# EOLAS ActiveX IE6 - My fix is shorter, and uglier
Gravatar I found a shorter fix that's both a lot more ugly and silly:
http://www.hoeben.net/node/135
I like the absurdity of this one though... 3/30/2006 12:54 PM | ahoeben
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar Hmm... interesting but it causes problems with signed applets because it appears the plugin reloads the applet when the js reassigns the outerHTML and then can't find the class file any more and leaves you with a hung IE that won't close without brute force.
Nice try though... I'll keep looking. 4/3/2006 11:49 PM | Chris Harlow
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar Seems to work initially but as soon as you mouseover the element it causes IE to crash :-( 4/4/2006 3:19 AM | Rich
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar Rich, do you remember which JRE you were using when experienced the crash? 4/5/2006 7:05 AM | Muhammed
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar Just as an update, I have mostly tried it with Flash objects and it seems to work well. I have not tried this "hack" on anything else. 4/5/2006 7:35 AM | Matt Watson
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar Has anyone else had trouble with signed applets crashing IE ? 4/6/2006 3:47 AM | Nigel
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar I may be dense, but I did put one line for between the tags, and created a separate eolasfix.js file in the same directory. I still get the "Click to activate and use this control" message when I put my mouse over the Flash object. Did I miss something? TIA. 4/8/2006 8:23 AM | David Alexander
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar I also tried the same line in the area, so it would execute. Still no results. 4/8/2006 10:44 AM | David Alexander
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar The problem with this 'fix' is that it loads the object twice. Once by the original HTML, and then again by script. Ideally you want to prevent the HTML load if you know it's going to use script. The example here http://www.hoeben.net/node/135 goes some way towards that but doesn't work for IE 7. It doesn't like the open ended NOSCRIPT tag. 4/12/2006 3:32 PM | Adam Leggett
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar Maybe we could make a HttpHandler or something that could pull out the html, stick it into an WebResource.axd include dynamically? 4/12/2006 5:12 PM | Matt Watson
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar Hello!
I have been used nearly the same workaround and it works perfectly for me. There are some differences, see http://www.dgx.cz/trine/item/jak-obejit-aktivovani-pluginu-v-ie
-
activation is required by all IE versions, so conditional comment should be <!--[if IE]>
-
IMHO IE uses only for embeding ActiveX till version 4. So only first for(..) is needed.
4/13/2006 2:16 PM | dgx
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar and another one;
http://therippa.blogspot.com/2006/03/activateactivex.html 4/13/2006 11:43 PM | Floris
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar Help needed.
I have a flash object in my jsp which goes like this.
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0"
width="599" height="300"
id="ECardEngine"
align="middle">
This flash object takes in parameters FlashVars.
When i try to implement the same solution, it works fine fine for simple flash objects but not for the above one as it takes extra parameter called FlashVars. Help needed to fix this. 4/17/2006 6:04 AM | Naresh R
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar Hi,
Although very clean, this solution does not seem to work with applets that contain params. Anyone know how to fix this?
Any sugestion would be great!
Btw, the solution at:
https://geekswithblogs.net/mwatson/archive/2006/03/22/73022.aspx
works fine on applets with params on IE6, but does not work on IE7 (some issue with the tag). 4/18/2006 4:37 AM | msd
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar Check out the latest at http://www.hoeben.net/node/135 4/21/2006 1:32 PM | Adam Leggett
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar I have a fix that works, but sometimes makes the page hang and never fires the onload event I have that runs my navigation. Can anyone tell me why this would cause the page not to load all the way? It loads the first time, but if you navigate to another page and hit "back" it does not load fully. If you hit "refresh" it will load fine.
theObjects = document.getElementsByTagName("object");
for (var i=0; i<theObjects.length; i++){
theObjects[i].outerHTML=theObjects[i].outerHTML;
}
theEmbeds = document.getElementsByTagName("embed");
for (var i=0; i<theEmbeds.length; i++){
theEmbeds[i].outerHTML=theEmbeds[i].outerHTML;
}
You call this script after the last object on the page. 4/25/2006 5:38 AM | Donna
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar I got it to work with this fix - thank you for that. 4/25/2006 10:04 AM | Jon Escobar
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar Here is a short Javascript fix + flash/HTML sample that gets around the activation problem without wasting too much time and traffic for downloading a workaround script.
It doesn't need major HTML source code alterations, just a single script include at the end of every page using any flash or applet controls.
http://www.ediy.co.nz/internet-explorer-flash-applet-activation-fix-xidc19237.html 4/26/2006 3:21 AM | AC
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar Hi can anyone get this fix to work with flashvars. thanks 4/26/2006 11:56 AM | Jonathan
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar Hi can anyone get this fix to work with flashvars. thanks 4/26/2006 11:57 AM | Jonathan
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar Hello,
Try my solution to activate objects in Html pages.
Download: http://www.orontesprojects.com/activeobj/instobj.exe
Version 1.03 works with:
* flash
* shockwave
* quicktime
* realplayer
* mediaplayer
Simple enter the input & output directory's and press convert. Object Activator does all the work for you ...
Orontes 4/29/2006 1:27 AM | Orontes
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar I am using object activator with success! Great!
Mark 5/2/2006 2:23 AM | Mark Jennings
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar I have several pages that use this script to set the object, and although I have gotten several fixes to work, non of them work on this:
5/3/2006 1:18 AM | remnin[](javascript:__doPostBack\('Comments_ascx$CommentList$ctl26$EditLink',''\))# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar Here is another simple fix.
Make a js file like this and include it:
function writeFlash(flashdata)
{
document.write(flashdata);
}
Then just do this on your page
5/9/2006 5:32 AM | Matt Watson[](javascript:__doPostBack\('Comments_ascx$CommentList$ctl27$EditLink',''\))# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar Matt, you're too good, it worked from the first trial. May I suggest a change to the cosmetic ? Making it more readable and easier to maintain ?
Many thanks, that's the best solution I've seen.
Jean-Pierre
5/16/2006 3:28 PM | Jean-Pierre
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar Hey Matt,
Your solution does not work in my latest IE7-beta... It works in the ActiveX upgrade for IE6. I looks like document.write will not be a solution in IE7.
Joe 5/20/2006 2:20 AM | Joe Watson
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar You will find the microsoft explanation here:
Joe 5/20/2006 2:24 AM | Joe Watson
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar Works just fine in 7.0.5346.5
Make sure you don't have javascript debugging on.
From their site:
Warning If you uncheck the Disable Script Debugging (Internet Explorer) option in the Advanced Tab of the Internet Options Control Panel, controls created using these techniques will still require activation. 5/20/2006 5:25 AM | Matt Watson
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar Matt,
I have tried with your suggestion, but the objects still require activation...
Your solution works fine in IE6...
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar Joe,
On this well-known MS page, they explicitly say:
The following example uses document.write to load a control dynamically.
// embed.js document.write('')document.write is an official MS way.....Passing the stuff through parameters or having it in the external JS should not change anything.
This solution is so good, I just implemented it anywhere it was needed. Let's see the publicly released IE 7 before making conclusions. For the time being, it's a beta, and from what I can read on french NGs, it's full of bugs.
Cheers
Jean-Pierre 5/23/2006 3:54 AM | Jean-Pierre
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar msd said :
Although very clean, this solution does not seem to work with applets that contain params. Anyone know how to fix this?
Well...
I found a way to clone the applets while keeping its parameters (usualy, IE zaps all the param tags once the applet is started, only leaving _cx and _cy).
Here it is :
function doApplet(){
var app=document.getElementsByTagName('applet')[0];
var par=app.parentNode;
var app2=app.cloneNode(true);
par.removeChild(app);
par.innerHTML=app2.outerHTML;
} 5/25/2006 6:50 PM | frenchyooy
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar The method of Matt works fine. Object Activator 1.43 uses a simular method, and does all the work for you:
http://www.orontesprojects.com/activeobj/instobj.exe
Mark 5/27/2006 11:57 PM | Mark Jennings
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar Type the following script,
//ediy v2
n=navigator.userAgent;
w=n.indexOf("MSIE");
if((w>0)&&(parseInt(n.charAt(w+5))>5)){
T=["object","embed","applet"];
for(j=0;j<2;j++){
E=document.getElementsByTagName(T[j]);
for(i=0;i<E.length;i++){
P=E[i].parentNode;
H=P.innerHTML;
P.removeChild(E[i]);
P.innerHTML=H;
}}}
save the file as a JavaScript file (NoIEActivate.js)
Then type in a single line before the tag of your html file.
Thsi is very simple and also working
6/7/2006 10:49 PM | Ravi
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar function axblast(id) {
/*
Embedded Objects Active X Warning Remover for IE
A dutch work arround
Use: put your embed code (flash,movie, etc)
between a div tag with an id.
trigger the axblast(your_div_id);
*/
if (id == undefined) { return false; }
// Rewrite code for IE browsers only
// Get the object HTML from div
if (document.all && document.all[''+id+'']) { html = document.all[''+id+''].innerHTML; }
// Write the same HTML back - couldnt be easier (-.0)
if (document.all && document.all[''+id+'']) { document.all[''+id+''].innerHTML = html; }
} 6/9/2006 7:22 AM | workarround
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar use firefox. problem fixed .... 8/30/2006 7:32 AM | guest nonesense
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar Thank you for solution. 1/31/2007 2:39 PM | Andy Chang
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar THX
for this solution :d 4/16/2007 9:05 AM | cs
# Other solution
Gravatar Hi folks!
I developed a fix named "jActivating". This script works with object, embed and applet elements; compatible with IE (6+) and Opera (9+); supports MIME types text/HTML and application/xhtml+xml; released into public domain :D
http://javtivating.sourceforge.net 5/6/2007 10:35 PM | David (Raspu)
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar DUH!!! Sorry!!!!
I wrote a wrong URI, it is http://jactivating.sourceforge.net 5/9/2007 8:51 PM | David (Raspu)
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar It’s very good article. Great site with very good look and perfect information. 8/4/2007 4:31 PM | Usb pendrive
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar yeah ists very good article thanks 9/13/2007 1:50 PM | oyunkabini
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar thank you its great 9/13/2007 8:38 PM | uslanmam
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar Thanks. it is very good. 9/14/2007 2:55 AM | TRplatform
# sohbet
Gravatar thanks everybody 9/14/2007 9:03 AM | sohbet
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar thanks job. 9/14/2007 3:37 PM | Full Download
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar Hi
thanks job. 9/14/2007 3:37 PM | Komedi
# Matematik - Geometri
Gravatar Nice Reoldes ? low 9/14/2007 3:39 PM | Matematik - Geometri
# chat
Gravatar good works! thanks 9/16/2007 2:26 AM | chat
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar thanks.
9/16/2007 10:14 AM | bilgisayar hocası
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar tahnks,very nice site. 9/21/2007 7:08 AM | counter strike
# re: Chat
Gravatar Thanks... very good site....
9/21/2007 12:41 PM | chat
# re: evden eve nakliyat
Gravatar thanks..
9/21/2007 12:42 PM | evden eve nakliyat
# re: evden eve nakliyat
Gravatar thanks..
very good sites...
9/21/2007 12:43 PM | evden eve nakliyat
# re: evden eve nakliyat
Gravatar thanks very good sitres..
9/21/2007 12:44 PM | evden eve nakliyat
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar good works! thanks, very good sites... 9/23/2007 1:23 PM | investment
# re:news
Gravatar Thnks its perfect 9/29/2007 2:52 PM | news
# International Lyrics Archive
Gravatar International Lyrics Archive 10/1/2007 2:48 PM | International Lyrics Archive
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar thank you .very good... 10/1/2007 3:08 PM | evden eve nakliyat
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar Thanks... nice article. 10/1/2007 6:11 PM | Seo Danışmanı
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar Thanx and congrats. Regards. 10/1/2007 6:12 PM | woman pictures
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar thanks msn 10/3/2007 5:19 AM | msn
# www.iyim.net
Gravatar thank youu 10/3/2007 3:50 PM | programlar
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar realy very nice article, this informations are great, thanks, very thanks
10/5/2007 6:58 AM | dobreprogramy
# iddaa
Gravatar Thanks. 10/7/2007 1:23 PM | iddaa tahminleri
# futbol
Gravatar nice site. 10/7/2007 1:24 PM | iddaa tahminleri
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar goood luck 10/12/2007 8:10 PM | google reklam
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar very nice...
thanks... 10/21/2007 5:11 PM | evden eve nakliyat
# tv
Gravatar thank you very good 10/25/2007 3:34 PM | tv izle
# cet
Gravatar thank you love you team 10/28/2007 7:03 PM | cet
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar kral oyun 10/29/2007 8:45 AM | kral oyun
# kuruyemiş
Gravatar thank you. 10/30/2007 8:38 AM | ali-sa-mi@hotmail.com
# sex shop
Gravatar penis büyütücü
seks shop
erotik shop 10/31/2007 8:18 PM | met
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar Is this exclusive to IE6? Just recently Microsoft altered and updated their IE to address this EOLAS dispute. So do you think this is still applicable? 11/5/2007 9:41 PM | portraits art
# sohbet
Gravatar Hi Bill,
I'd be interested in seeing how the fairly new Google Trends will rank in the next analysis you do.
http://www.google.com/press/pressrel/new\_tech.html
11/7/2007 4:08 PM | sohbet
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar sex shop
sex shop
seks shop
seks shop
erotik shop
erotik shop
penis büyütücü
penis büyütücü 11/8/2007 4:13 PM | mett
# sohbet
Gravatar thank you http://www.alcak.net 11/9/2007 9:05 AM | sohbet
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar thanks! 11/23/2007 8:46 AM | tercume
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar Yes a from 11/24/2007 4:06 PM | Seo
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar Thanks for linksseks shopseks shopsex shopsex shopseks shopseks shoperotik shoperotik shopvideo uploadvideo uploadfile upload 11/27/2007 5:24 PM | geciktirici
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar ayurveda yoga massage frankfurt says thank you! 11/27/2007 9:06 PM | Ayurveda Frankfurt
# re: EOLAS ActiveX IE6 - I found a fix?
Gravatar thanx for information! 11/27/2007 9:08 PM | massage
Post a comment
Title:
Name:
Email: Not Displayed
Website:
Comment:
Please add 2 and 4 and type the answer here:
