T O P I C R E V I E W |
candid |
Posted - 11 Apr 2007 : 12:33:10 Can anyone please give some instructions on how to put an "active x" solution together using DHE, I have seen a few including the 2 at Adobe. I have quite a bit of flash in some pages and would like to sort out this prob, I notice some people have to click twice on the object to activate it. If someone could post some code, and tell me how to cut and paste the stuff in place it would be much appreciated, or can we do it from existing project files? any simple solution would be great, unless there is a thread already where you can lead me to.
Thanks in advance. - George |
2 L A T E S T R E P L I E S (Newest First) |
candid |
Posted - 11 Apr 2007 : 16:02:09 Thank you Petran,
I will give it a try, and see how it goes, what a mission this "to do" has led us to, I wonder how many more of these workarounds are on the way.
Take care - George
|
petran |
Posted - 11 Apr 2007 : 15:52:29 George,
copy the code beneath into notepad and save it as ieupdate.js
-----------------------------------------------------
objects = document.getElementsByTagName("object"); for (var i = 0; i < objects.length; i++) { objects[i].outerHTML = objects[i].outerHTML; }
-----------------------------------------------------
Save the file in the same folder as your HTML. Just below the </object> tag in your HTML you have to paste the next code:
-----------------------------------------------------
<script type="text/javascript" src="ieupdate.js"></script>
-----------------------------------------------------
This wil solve that [2 77:H] microsoft issue |
|
|