Re: [WSG] IE7 Flash

2006-06-03 Thread kvnmcwebn

hello adam,
Ive been trying to implement this brilliant solution but must be missing 
something silly.

Can you tell me what im doing wrong?

an external "faxa.js" file
with this script:

/* list of offending elements to fix */
var offenders = ["object","embed","applet"];

/* foreach offender */
for(var j=0; j


RE: [WSG] IE7 Flash

2006-05-30 Thread Phillips, Wendy



As well as previously mentioned solutions, if you are using 
Dreamweaver there is now an upgrade file you can download from adobe.com which 
auto includes the required JS to fix this issue - there are also new flash 
templates if you can download if you are just using Flash
 
Wendy Phillips
 

   


RE: [WSG] IE7 Flash

2006-05-30 Thread Berman, Pamela E

That did the trick!!! Thanks :-)

> -Original Message-
> From: listdad@webstandardsgroup.org 
> [mailto:[EMAIL PROTECTED] On Behalf Of Adam 
> Burmister (DSL AK)
> Sent: Tuesday, May 30, 2006 4:10 PM
> To: wsg@webstandardsgroup.org
> Subject: RE: [WSG] IE7 Flash
> 
> This is my solution:
> 
> /**
>  * FAXA v1.0 -- Fix ActiveX Activation, IE and Eolas patent 
> patch click-to-activate issue
>  * by Adam Burmister, Flog.co.nz, 2006
>  *
>  * ABOUT:
>  * This script is designed to be a simple drop in fix for the 
> click-to-activate issue in IE.
>  * Due to recent patent issues with Eolas, Microsoft has 
> issued a patch which required users to
>  * click a web control to activate it (this are ActiveX 
> controls, Flash, Windows Media, Quicktime, etc).
>  *
>  * Microsofts suggested resolution was to include a 
> javascript block for each of these elements on
>  * the page which uses document.write() to write the 
> control's HTML. This is horribly dirty.
>  * This script uses the same idea (creating controls 
> programatically to bypass the click-to-activate), but
>  * does it in a good way. It simply recreates each ActiveX 
> element on the page based on it's current
>  * HTML declaration. 
>  *
>  * This means...
>  *   - no ugly instance specific javascript blocks
>  *   - users without javascript can see the activex elements 
> (but will have to click to activate)
>  *   - a simple conditional include file in a page header 
> automatically fixes the problem
>  *
>  * USAGE:
>  * Simply include the following IE conditional comment to 
> include the javascript file at the top of
>  * every page with ActiveX controls you want to fix:
>  * 
>  *
>  */
> 
> /* list of offending elements to fix */
> var offenders = ["object","embed","applet"];
> 
> /* foreach offender */
> for(var j=0; j   /* get a collection of instances on page */
>   var instances = document.getElementsByTagName(offenders[j]); 
>   /* foreach instance */
>   for (var n=0; n   /* recreate the instance */
>   instances[n].outerHTML = instances[n].outerHTML;
>   }
> }
> 
> /*
> This could be compacted to one line (160 bytes):
> 
> var 
> o=["object","embed","applet"],j,k;for(j=0;j e=document.getElementsByTagName(o[j]);for(k=0;k */
> 
> 
> From: listdad@webstandardsgroup.org 
> [mailto:[EMAIL PROTECTED] On Behalf Of Helmut Granda
> Sent: Wednesday, 31 May 2006 7:37 a.m.
> To: wsg@webstandardsgroup.org
> Subject: RE: [WSG] IE7 Flash
> 
> You don't have to train your users to click on flash content 
> twice, with a little of JS magic everything is solved:
> 
> http://blog.deconcept.com/swfobject/
> 
> I have used and I know a lot of people have used too, it 
> validates and works like a charm.
> 
> ...helmut
> 
> From: listdad@webstandardsgroup.org 
> [mailto:[EMAIL PROTECTED] On Behalf Of Berman, Pamela E
> Sent: Tuesday, May 30, 2006 1:50 PM
> To: wsg@webstandardsgroup.org
> Subject: RE: [WSG] IE7 Flash
> 
> The same thing happens in IE 6. Our team was just discussing 
> how to let our learners know they need to click twice for 
> some of our training. It is confusing to some people. A 
> couple of people have asked me about it. If there is an 
> answer, I'd love to pass it along.
>  
> Pam Berman
> 
> 
> From: listdad@webstandardsgroup.org 
> [mailto:[EMAIL PROTECTED] On Behalf Of Shawn Cassick
> Sent: Tuesday, May 30, 2006 2:28 PM
> To: wsg@webstandardsgroup.org
> Subject: [WSG] IE7 Flash
> I am sure many of you have ie7 beta2 installed, and I am sure 
> most of you have noticed it makes you click active-x content 
> to activate it.  This leads me to my question, I am doing a 
> site for a band, they want a flash intro, but with ie7 the 
> intro would be rather worthless considering the end user 
> would have to click the content to activate it.  Does anyone 
> have a tidbit of code that would just bypass ie7's ability to 
> block the content and just let it play?
> 
> 
> 
> 
> Shawn Cassick
> dVious designs
> **
> The discussion list for  http://webstandardsgroup.org/
> 
>  See http://webstandardsgroup.org/mail/guidelines.cfm
>  for some hints on posting to the list & getting help
> **
> 
> 
**
The discussion list for  http://webstandardsgroup.org/

 See http://webstandardsgroup.org/mail/guidelines.cfm
 for some hints on posting to the list & getting help
**



RE: [WSG] IE7 Flash

2006-05-30 Thread Adam Burmister \(DSL AK\)
This is my solution:

/** 
 * FAXA v1.0 -- Fix ActiveX Activation, IE and Eolas patent patch 
click-to-activate issue
 * by Adam Burmister, Flog.co.nz, 2006 
 * 
 * ABOUT:
 * This script is designed to be a simple drop in fix for the click-to-activate 
issue in IE.
 * Due to recent patent issues with Eolas, Microsoft has issued a patch which 
required users to
 * click a web control to activate it (this are ActiveX controls, Flash, 
Windows Media, Quicktime, etc).
 *
 * Microsofts suggested resolution was to include a javascript block for each 
of these elements on
 * the page which uses document.write() to write the control's HTML. This is 
horribly dirty.
 * This script uses the same idea (creating controls programatically to bypass 
the click-to-activate), but
 * does it in a good way. It simply recreates each ActiveX element on the page 
based on it's current
 * HTML declaration. 
 * 
 * This means...
 *   - no ugly instance specific javascript blocks
 *   - users without javascript can see the activex elements (but will have to 
click to activate)
 *   - a simple conditional include file in a page header automatically fixes 
the problem
 *
 * USAGE:
 * Simply include the following IE conditional comment to include the 
javascript file at the top of
 * every page with ActiveX controls you want to fix:
 * 
 *
 */

/* list of offending elements to fix */
var offenders = ["object","embed","applet"];

/* foreach offender */
for(var j=0; jmailto:[EMAIL PROTECTED] On Behalf Of 
Helmut Granda
Sent: Wednesday, 31 May 2006 7:37 a.m.
To: wsg@webstandardsgroup.org
Subject: RE: [WSG] IE7 Flash

You don't have to train your users to click on flash content twice, with a 
little of JS magic everything is solved:

http://blog.deconcept.com/swfobject/

I have used and I know a lot of people have used too, it validates and works 
like a charm.

...helmut

From: listdad@webstandardsgroup.org [mailto:[EMAIL PROTECTED] On Behalf Of 
Berman, Pamela E
Sent: Tuesday, May 30, 2006 1:50 PM
To: wsg@webstandardsgroup.org
Subject: RE: [WSG] IE7 Flash

The same thing happens in IE 6. Our team was just discussing how to let our 
learners know they need to click twice for some of our training. It is 
confusing to some people. A couple of people have asked me about it. If there 
is an answer, I'd love to pass it along.
 
Pam Berman


From: listdad@webstandardsgroup.org [mailto:[EMAIL PROTECTED] On Behalf Of 
Shawn Cassick
Sent: Tuesday, May 30, 2006 2:28 PM
To: wsg@webstandardsgroup.org
Subject: [WSG] IE7 Flash
I am sure many of you have ie7 beta2 installed, and I am sure most of you have 
noticed it makes you click active-x content to activate it.  This leads me to 
my question, I am doing a site for a band, they want a flash intro, but with 
ie7 the intro would be rather worthless considering the end user would have to 
click the content to activate it.  Does anyone have a tidbit of code that would 
just bypass ie7's ability to block the content and just let it play?




Shawn Cassick
dVious designs
**
The discussion list for  http://webstandardsgroup.org/

 See http://webstandardsgroup.org/mail/guidelines.cfm
 for some hints on posting to the list & getting help
**



RE: [WSG] IE7 Flash

2006-05-30 Thread Helmut Granda








You don’t have to train your users to click on flash content
twice, with a little of JS magic everything is solved:

 

http://blog.deconcept.com/swfobject/

 

I have used and I know a lot of people have used too, it
validates and works like a charm.

 

…helmut

 





From: listdad@webstandardsgroup.org
[mailto:[EMAIL PROTECTED] On Behalf Of Berman, Pamela E
Sent: Tuesday, May 30, 2006 1:50 PM
To: wsg@webstandardsgroup.org
Subject: RE: [WSG] IE7 Flash





 



The same thing happens in IE 6. Our team was just discussing how to
let our learners know they need to click twice for some of our training. It is
confusing to some people. A couple of people have asked me about it.
If there is an answer, I'd love to pass it along.





 





Pam Berman





 







From: listdad@webstandardsgroup.org
[mailto:[EMAIL PROTECTED] On Behalf Of Shawn Cassick
Sent: Tuesday, May 30, 2006 2:28 PM
To: wsg@webstandardsgroup.org
Subject: [WSG] IE7 Flash

I am sure many of you have ie7 beta2 installed, and I am
sure most of you have noticed it makes you click active-x content to activate
it.  This leads me to my question, I am doing a site for a band, they want
a flash intro, but with ie7 the intro would be rather worthless considering the
end user would have to click the content to activate it.  Does anyone have
a tidbit of code that would just bypass ie7's ability to block the content and
just let it play?




Shawn Cassick
dVious designs










Re: [WSG] IE7 Flash

2006-05-30 Thread Tom Livingston



On 5/30/06 2:49 PM, "Berman, Pamela E" <[EMAIL PROTECTED]> wrote:

> A couple of people have asked me about it. If there is an answer, I'd love to
> pass it along.

Perhaps this:

http://www.adobe.com/devnet/flash/articles/swfobject.html


-- 

Tom Livingston
Senior Multimedia Artist
Media Logic
www.mlinc.com


**
The discussion list for  http://webstandardsgroup.org/

 See http://webstandardsgroup.org/mail/guidelines.cfm
 for some hints on posting to the list & getting help
**



RE: [WSG] IE7 Flash

2006-05-30 Thread Berman, Pamela E



The 
same thing happens in IE 6. Our team was just discussing how to let our learners 
know they need to click twice for some of our training. It is confusing 
to some people. A couple of people have asked me about it. If there is 
an answer, I'd love to pass it along.
 
Pam 
Berman

  
  
  From: listdad@webstandardsgroup.org 
  [mailto:[EMAIL PROTECTED] On Behalf Of Shawn 
  CassickSent: Tuesday, May 30, 2006 2:28 PMTo: 
  wsg@webstandardsgroup.orgSubject: [WSG] IE7 
  Flash
  I am sure many of you have ie7 beta2 installed, and I am sure most 
  of you have noticed it makes you click active-x content to activate it.  
  This leads me to my question, I am doing a site for a band, they want a flash 
  intro, but with ie7 the intro would be rather worthless considering the end 
  user would have to click the content to activate it.  Does anyone have a 
  tidbit of code that would just bypass ie7's ability to block the content and 
  just let it play?Shawn CassickdVious designs