Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

javascript-flash-foundation-series · JavaScript Flash Foundation Series

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 7
  • Category: Web Browsers
  • Founded: Mar 18, 2007
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Messages

Advanced
Messages Help
Messages 4 - 5 of 5   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Show Message Summaries Sort by Date ^  
#4 From: "blueyesinky2004" <swhite@...>
Date: Fri Jun 25, 2010 6:01 am
Subject: Does Flash Detect script work on Windows x64? within an HTA?
blueyesinky2004
Send Email Send Email
 
Hello!

I found this: 
http://www.featureblend.com/javascript-flash-detection-library.html

which I would like to use on a Windows x64 OS in an HTA. Can you confirm that
this will work in that environment?

Thanks,
Susan

#5 From: "iecustomizer" <iecustomizer@...>
Date: Mon Mar 25, 2013 11:45 pm
Subject: ActiveX Filtering in IE10... windows 7 and 8
iecustomizer
Send Email Send Email
 
Hi,

had an experience with http://hbo.com and many users report being prompted to
download and install Flash when they know they have the latest version
installed.

It appear that the flash_detection.js will fail in IE10 if an ActiveX control
(flash) has been disabled or ActiveX filtering is blocking the control.

Test Case: turn on ActiveX Filtering in IE10 (Tools>ActiveX Filtering) and
navigate to http://hbo.com - you will be prompted to download and install the
latest version of Flash.
or
Disable Shockwave flash in IE by using the Addons Manager and repeat the above.

In MSIE there is no way to detect whether an AX control is installed, disabled
or if ActiveX Filtering is blocking it as a "unable to create instance of
ActiveX control" is thrown in all cases.

here is a possible solution which displays an additional warning to a user if it
is detected that ActiveX filtering is enabled.

function AXFiltering(){
	 if(!window.external){return 'unsupported';}
	 if(typeof window.external.msActiveXFilteringEnabled=='unknown'){
	 if(window.external.msActiveXFilteringEnabled()){return true;} else {return
false;}
	 }else{return 'unsupported';}
}

<body>
<div id="divAXFiltering"
style="display:none;background-color:honeydew;color:darkslateblue"><p>ActiveX
Filtering is Enabled.</p></div>
<script type="text/javascript">
document.write('DocumentMode:\t' + getDocumentMode() + '<br/>');
document.write('Platform:\t' + getPlatform() + '<br/>');
if(AXFiltering()==false){
document.write('Shockwave Flash:\t' + flashSupported()+'<br/>');
document.write('Media Player:\t' + mediaplayerSupported() + '<br/>');
document.write('Adobe PDF Reader:\t' + adobePDFSupported()+'<br/>');
document.write('Nitro PDF Reader:\t' + nitroPDFSupported()+'<br/>');
document.write('Java RT:\t' + javaRTSupported()+'<br/>');
document.write('Skype:\t' + skypeSupported()+'<br/>');
document.write('Silverlight:\t' + silverlightSupported()+'<br/>');
}else{ document.getElementById('divAXFiltering').style.display='block';}
document.write('ActiveX Filtering:\t' + AXFiltering() +'<br/>');
document.write('Tracking Protection:\t' + trackingProtection() + '<br/>');
document.write('HTML5 Video:\t' + videoSupported() + '<br/>');
</script>
</body>

Messages 4 - 5 of 5   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help