I notice that you have a potential mismatch in setting your params

the parameters  object in (green) is passed to your swfobject call.  wmode
opaque is part of another object and not passed to the call. I have amended
your code adding the *wmode prop to the params object *being passed to the
call


      var flashvars = {};

       var parameters = {};

       parameters.allowfullscreen = 'true';

       parameters.loop = 'true';

       *parameters**.wmode = "opaque";*

       var attributes = {};

       var params = { wmode: "opaque" };

       swfobject.embedSWF('video background experiment1.swf', 'mySWF',

'100%', '100%', '9.0.28.0', false, flashvars, *parameters*, attributes);

       params.wmode = "opaque";


I know whats its like fiddling with stuff and trying to pin down the cause
of an issue.  Thats perhaps why these bits remain (you might be testing it
with and without them etc);  And the  pain of hidden gotchas (the font-face
clash with fullscreen)

Its all to easy to omit the code causing the issue when posting snippets of
code.

- S




On 7 March 2010 04:28, PT <[email protected]> wrote:

> Hi Philip,
>
> While the wrapper1 discrepancy is embarrassing, the transparency still
> is not functioning.  It's frustrating when there's no apparent
> critical reason for presumably logical instructions not functioning
> the way it's claimed they should.  So I'll try to find somebody to
> talk to in person who can spot the mistake where I'm missing it.
> Thanks again for looking at this!  I appreciate your help,
>
> PT
>
> --
> You received this message because you are subscribed to the Google Groups
> "SWFObject" group.
> To post to this group, send email to [email protected].
> To unsubscribe from this group, send email to
> [email protected]<swfobject%[email protected]>
> .
> For more options, visit this group at
> http://groups.google.com/group/swfobject?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"SWFObject" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/swfobject?hl=en.

Reply via email to