"click to activate and use this control"?

  • peachy
  • Beginner
  • Beginner
  • User avatar
  • Joined: Apr 08, 2006
  • Posts: 48
  • Loc: Japan
  • Status: Offline

Post April 14th, 2006, 11:58 pm

I've got a problem with one of my flash menus. If you go to my site http://www.chibabeat.com you can see that when you hover over the menu box on the upper left corner it says "click to activate and use this control". Is there anything I can do to disable this so that the box is active as soon as the page opens?
This wasn't a problem until today and I'm not sure if it is just my computer or if everyone sees this too.
  • Anonymous
  • Bot
  • No Avatar
  • Joined: 25 Feb 2008
  • Posts: ?
  • Loc: Ozzuland
  • Status: Online

Post April 14th, 2006, 11:58 pm

  • IceCold
  • Guru
  • Guru
  • User avatar
  • Joined: Nov 05, 2004
  • Posts: 1254
  • Loc: Ro
  • Status: Offline

Post April 15th, 2006, 12:19 am

i have no idea .... it works ok for me.
Probably some security settings?
“True mastery transcede any particular art. It stems from mastery of oneself - the ability, developed throgh self-discipline, to be calm, fully aware, and complety in tune with oneself and the surroundings. Then, and only then, can a person know himself. ”
  • mobosof
  • Novice
  • Novice
  • User avatar
  • Joined: Jun 13, 2005
  • Posts: 20
  • Loc: uk
  • Status: Offline

Post April 15th, 2006, 2:36 am

from the 11th...what you are seeing is microsofts answer to the EOLAS effect..it's in IE now to put a dotted box around the movie and ask if you want to enable active-x
a search on google will give you a couple of fixes, basically you call a Javascript routine to intercept and the problem will go away.
you'll be seeing a lot more posts describing the same as its now in effect.
  • Rapt0r
  • Student
  • Student
  • No Avatar
  • Joined: Jul 17, 2005
  • Posts: 95
  • Status: Offline

Post April 22nd, 2006, 8:41 am

Yeah, its from the microsoft update. It's been really annoying to me as well as I use a couple of flash files on my website and you have to click it like two or three times just to get to use it.

Ugh! is all I can say lol :(
  • classified
  • Expert
  • Expert
  • User avatar
  • Joined: Dec 23, 2005
  • Posts: 540
  • Loc: Bahrain
  • Status: Offline

Post April 22nd, 2006, 1:29 pm

IE 7 has this Feature , just incase a rollover might Triger a security threat ..
here a good site that might help ... http://www.baekdal.com/articles/Technology/microsoft-ie-activex-update
m0o , where <<Less is More>>
http://www.zainals.com
http://www.zainals.com/blog
  • Stargrrl
  • Newbie
  • Newbie
  • User avatar
  • Joined: Apr 22, 2006
  • Posts: 9
  • Loc: Southern California
  • Status: Offline

Post April 23rd, 2006, 10:29 am

I've tried 3 fixes so far and my that havent worked. In general instructions on how to do this are difficult to understand. I'd like to sue microsoft myself for messing up my pages :x
  • mobosof
  • Novice
  • Novice
  • User avatar
  • Joined: Jun 13, 2005
  • Posts: 20
  • Loc: uk
  • Status: Offline

Post April 23rd, 2006, 3:13 pm

http://support.microsoft.com/kb/917425/en-us#E0VB0ABAAA

if it's just for your own use..link above has the patch that will revert back to how it was...short term
  • crisen
  • Born
  • Born
  • No Avatar
  • Joined: May 03, 2006
  • Posts: 1
  • Status: Offline

Post May 3rd, 2006, 4:07 am

Hi there.

must say that the solutions i saw on ms's page don't work right with applets embeded in pages.
so i started to implement myself and after testing and testing i finally got it to work right.
the script was started mainly for the applets (embeded with object tag) but it works also on the other problematic tags/objects.
what you need: download the script file; import the file in your page right before the </body> tag.

http://www.senchiu.de/iefix/iefix.html

Hope i could help (i jnow how annoying was for me)
  • tgarske
  • Born
  • Born
  • No Avatar
  • Joined: May 12, 2006
  • Posts: 1
  • Status: Offline

Post May 12th, 2006, 9:29 am

I have imported this js script into my pages which I'm having this same problem on. It seems to work great on one of my pages, but not the rest? I double and triple checked them that the import is right before the </body> tag.
  • Priamos
  • Born
  • Born
  • User avatar
  • Joined: May 13, 2006
  • Posts: 1
  • Status: Offline

Post May 13th, 2006, 5:25 am

here you could find an explanation to fix that... download the movie.
http://www.cartoonsmart.com/change_code.html
  • classified
  • Expert
  • Expert
  • User avatar
  • Joined: Dec 23, 2005
  • Posts: 540
  • Loc: Bahrain
  • Status: Offline

Post May 13th, 2006, 8:47 pm

http://www.pwdmag.co.uk/forum/viewtopic.php?t=107
m0o , where <<Less is More>>
http://www.zainals.com
http://www.zainals.com/blog
  • madmanbean
  • Born
  • Born
  • User avatar
  • Joined: May 20, 2006
  • Posts: 1
  • Loc: England
  • Status: Offline

Post May 20th, 2006, 7:13 am

Have come accross this problem too and as stated on this bb it is indeed a microsoft change. You can uninstall the relevent security upgrade which fixes your pc but far more important is the fact that other users seeing your sites will still encounter this problem if they have automatic updates enabled!

However, there is a simple fix for your sites as detailed below

1)Create the follwing .js file as below

CODE/*****************************************************************
* Flash Fix script
* Fixes embedded object activation issues in Internet Explorer
*****************************************************************/

flashfix = function() {
theObjects = document.getElementsByTagName("object");
for (var i = 0; i < theObjects.length; i++) {
theObjects[i].outerHTML = theObjects[i].outerHTML;
}
}

if (window.attachEvent)
window.attachEvent("onload", flashfix)
else
window.onload=flashfix;


save it as flashfix.js or whatever and then place a link in the "head" section of your site for every page that has flash using the follwing link

<script src="location/of/flashfix.js" type="text/javascript"></script>

Have applied this to all my flash sites and it works! (Thankyou Microsoft for all the extra work!)

Hope it works for you!

Regards Terry
http://www.beanwebs.co.uk
  • graphixboy
  • Control + Z
  • Mastermind
  • User avatar
  • Joined: Jul 11, 2005
  • Posts: 1828
  • Loc: In the Great White North
  • Status: Offline

Post May 23rd, 2006, 2:24 pm

The other option is to remove the <embed> tag completely and place your flash movie, quicktime, flix, shockwave, etc using javascript.

A quick and easy example is available with the flash object

http://blog.deconcept.com/swfobject/
  • Riks
  • Newbie
  • Newbie
  • No Avatar
  • Joined: Mar 23, 2006
  • Posts: 12
  • Status: Offline

Post May 24th, 2006, 3:50 am

solution:

http://www.sometricks.com/2006/04/23/be ... ashobject/
  • Gillykid
  • Born
  • Born
  • No Avatar
  • Joined: May 30, 2006
  • Posts: 1
  • Status: Offline

Post May 30th, 2006, 5:39 am

don't know if its of any use but we have created a program to automatically update any website in a folder by applying the javascript work around:

http://www.setsquareassist.com/websiteconverter.htm
  • Anonymous
  • Bot
  • No Avatar
  • Joined: 25 Feb 2008
  • Posts: ?
  • Loc: Ozzuland
  • Status: Online

Post May 30th, 2006, 5:39 am

Post Information

  • Total Posts in this topic: 17 posts
  • Users browsing this forum: No registered users and 69 guests
  • You cannot post new topics in this forum
  • You cannot reply to topics in this forum
  • You cannot edit your posts in this forum
  • You cannot delete your posts in this forum
  • You cannot post attachments in this forum
 
 

© 2011 Unmelted, LLC. Ozzu® is a registered trademark of Unmelted, LLC.