[MASTER] Adobe Flash does not support WMODE (Flash content always rendered on top of web pages)

Bug #49613 reported by Martin Flack
452
This bug affects 20 people
Affects Status Importance Assigned to Milestone
Mozilla Firefox
Fix Released
Medium
nspluginwrapper
Fix Released
Undecided
Unassigned
firefox (Ubuntu)
Won't Fix
Undecided
Unassigned
firefox-3.0 (Ubuntu)
Fix Released
Undecided
Unassigned
flashplugin-nonfree (Ubuntu)
Fix Released
Medium
Mozilla Bugs
gnash (Ubuntu)
Invalid
Undecided
Unassigned
nspluginwrapper (Ubuntu)
Fix Released
Undecided
Unassigned

Bug Description

The Adobe Flash plugin does not support the "wmode" option used by many websites.

As a result, all Flash is drawn on top of other content, often obscuring major parts of web pages and making it unusable.

*There is unfortunately nothing we can do.* If you want this fixed, vote for the bug on Adobe's bug tracker.

http://bugs.adobe.com/jira/browse/FP-80

Test case:

http://www.ishares.com/home.jhtml

Try to operate the menus at left or top. The boxes are obscured by the Flash content.

For more information on this mechanism, read http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_15523

Tags: metabug
Revision history for this message
In , Peterlubczynski-bugs (peterlubczynski-bugs) wrote :

..probably can be done on Linux since it works on Windows, but dunno where to
start. Did 4.x have an implementation?

Revision history for this message
In , Braden (braden) wrote :

No, it didn't.

Revision history for this message
In , Rubydoo123 (rubydoo123) wrote :

setting to future

Revision history for this message
In , Braden (braden) wrote :

This is a platform parity issue, and thus not an enhancement.

Revision history for this message
In , Rubydoo123 (rubydoo123) wrote :

Braden: I would like to open this bug up to a more focused issue and thus change
the OS to ALL - as well as change the summary to state "Need windowless plug-in
support for Flash" would that be acceptable to you?

Revision history for this message
In , Braden (braden) wrote :

beppe: I think "Windowless plug-in support for X" pretty accurately describes
the problem here. The problem is by no means unique to Flash. It sounds to me
that if we did what you describe, this would be a duplicated of bug 44322. This
bug exists because bug 44322 was resolved without addressing this issue for X.
If it is preferred that a single bug be used to track this issue on all
platforms--and especially if there exist problems with windowless plug-ins on
Windows and/or Mac that would be motivation for broadening the scope of this
bug--I suggest that it is appropriate to reopen bug 44322 and mark this one as a
duplicate of it.

Revision history for this message
In , Mozilla-paperetto (mozilla-paperetto) wrote :

I think bug 44322 should stay closed, it was about reproducing the NS 4.x
functionality. The title of this bug seems to describe pretty well what this bug
is about.

Has anyone verified that windowless plugins don't work under X, I'm sure they
don't work, but a test case would be useful. I'd probably have a look at this if
I didn't have to go to the effort of learning how to implement the plugin side
of a windowless plugin under X. I wouldn't expect a fix to be too difficult,
there is a lot of #ifdef'd code in the windowless code that passes windows
specific messages - I would guess that we just need to work out what the
appropriate action would be for X in each of these cases.

Revision history for this message
In , Srgchrpv (srgchrpv) wrote :

there is no windowless plug-in support on X, and never been, even in 4.x world,
therefore I'm not aware of any test cases,
anyway I wouldn't change anything in this bug, it is valid generic X bug,
not only flash relatead.

Revision history for this message
In , Edwardmillard (edwardmillard) wrote :

If someone can give me the hooks to do an XCopyArea from the browser window to
the Flash buffer I will implement this. I have all the framework in place, it
seems to work, I just need to get the browser pixels at the start of our redraw
cycle. Note that hooks to do an XCopyArea from an offscreen X image holding
the browser window image would be preferable though I imagine one of these
doesn't exist.

Revision history for this message
In , Mozilla-paperetto (mozilla-paperetto) wrote :

Hi Ed, I had just started looking at getting this working. Can you attach a
patch for the work that you have done?

Revision history for this message
In , Edwardmillard (edwardmillard) wrote :

All the work I've done is in our plugin, so there is no patch that will be of
much use to you. I've basicly just implemented the Windowless code we are
using in our Mac player up to the point that where I need X11 hooks to get an
XImage from the browser.

Revision history for this message
In , Mozilla-paperetto (mozilla-paperetto) wrote :

I was looking at implementing this in a similar way to windows. So, that an
XEvent will get passed through HandleEvent. I was thinking of using an Expose
event and passing the drawable through in the Window parameter. Would that work
for you? I'll try to put together a patch this weekend.

Revision history for this message
In , Edwardmillard (edwardmillard) wrote :

If the drawable is an off screen XImage it will work. If the drawable is a
window the flicker will be unacceptable because there will be a long period
while the browser background is on screen. I'm told Windowless mode isn't
supported on Mac Classic for this same reason, flicker.

There are also needs to be a protocol on who ultimately puts the off screen
image on screen. I'm assuming it will be the plugin but I'm not sure what the
pro's and con's are.

Revision history for this message
In , Mozilla-paperetto (mozilla-paperetto) wrote :

The drawable will be an offscreen image, which will only be valid for use for
the length of the call to HandleEvent. The browser will be passing its current
backbuffer through to the plugin, to allow the plugin to render directly into it.

Revision history for this message
In , Mozilla-paperetto (mozilla-paperetto) wrote :

Created attachment 104801
Rough patch for implementing windowless support on Unix

The patch does not work in its current state, I have attached it so I don't
lose what I've done. It is also not very polished, e.g. I am sure there is a
better way of doing the GTK specific stuff without #ifdefing it everywhere. The
aim at the moment is to get it working and worry about tidying it up later!

On the plugin side I have implemented HandleEvent as follows:
uint16 nsPluginInstance::HandleEvent(void* aEvent)
{
  NPEvent * event = (NPEvent *)aEvent;
  switch (event->type) {
    case GraphicsExpose:
    {
 XGraphicsExposeEvent* exevent = (XGraphicsExposeEvent*)event;

 //GC gc = XCreateGC(exevent->display, exevent->drawable, 0, NULL);
 //mWindow is stored from the call to SetWindow
 if(!mWindow)
    return 1;
 GC gc = (GC)(mWindow->window);
 if (!gc)
    return 1;
 XDrawRectangle(exevent->display, exevent->drawable, gc, x, y, w, h);

However it crashes inside the call to XDrawRectangle, which I guess means that
there is something wrong with the drawable. I'm not really an expert on Xlib so
if anyone has any suggestions I'll be grateful.

Revision history for this message
In , Roc-ocallahan (roc-ocallahan) wrote :

I wish I'd known about this bug!

There is a fairly easy way to do this. When we call Paint() on the plugin frame,
it should synthesize an event and pass it to the plugin, along with a drawable
obtained from the nsIRenderingContext parameter. This drawable will be an
*offscreen* pixmap (because the view manager paints frames onto an offscreen
area for double-buffering purposes).

Revision history for this message
In , Bugzilla-accessibleinter (bugzilla-accessibleinter) wrote :

*** Bug 215237 has been marked as a duplicate of this bug. ***

Revision history for this message
In , Alfonso (amla70) wrote :

*** Bug 231557 has been marked as a duplicate of this bug. ***

Revision history for this message
In , Bzbarsky (bzbarsky) wrote :

*** Bug 240781 has been marked as a duplicate of this bug. ***

Revision history for this message
In , Leon-sha-oracle (leon-sha-oracle) wrote :

Created attachment 148794
Rough patch based on david's patch

Using unixprinting plugin as testcase.

Revision history for this message
In , Leon-sha-oracle (leon-sha-oracle) wrote :

Created attachment 148795
test page of this patch

Using /modules/plugin/samples/unixprinting/libunixprintplugin.so as the plugin.

Revision history for this message
In , Vdvo (vdvo) wrote :

Is there anything I can do to push this forward? Does the patch need testing,
for example? Is there a reason there is no review request for it? Thank you.

Revision history for this message
In , Doronr (doronr) wrote :

Note that on Fedora Core 3 and latest flash, wmode (transparent flash) works -
http://www.macromedia.com/support/flash/ts/documents/wmode.htm

Revision history for this message
In , Braden (braden) wrote :

Are you sure?

"Note: Because of restrictions in this form, the layer is simulated. Viewing
the source of this page will not reflect the method accurately."

Revision history for this message
In , Doronr (doronr) wrote :

Missed that. http://www.communitymx.com/content/source/E5141/wmodetrans.htm
indeed doesn't work on linux correctly, my bad.

Revision history for this message
In , Pete-mozdevgroup (pete-mozdevgroup) wrote :

Created attachment 169650
revised patch against trunk

One of the things I am unsure of is how I am obtaining the drawable:

nsObjectFrame.cpp
 exposeEvent.drawable = (Drawable)win->GetNativeData(NS_NATIVE_WIDGET);

So maybe others who have worked on this patch or know layout internals better
can collaborate.

I'll post a revised test case next.

Revision history for this message
In , Pete-mozdevgroup (pete-mozdevgroup) wrote :

Created attachment 169652
New Test page using unixprintplugin

Revision history for this message
In , Roc-ocallahan (roc-ocallahan) wrote :

I'll have a look at this.

Revision history for this message
In , Roc-ocallahan (roc-ocallahan) wrote :

+ exposeEvent.drawable =
(Drawable)win->GetNativeData(NS_NATIVE_WIDGET);

You want NS_NATIVE_WINDOW so that this can work in GTK1.

Other than that, this looks pretty good on the painting side. But the event
handling is missing. You need something like this:

http://lxr.mozilla.org/mozilla/source/layout/generic/nsObjectFrame.cpp#3883

Fix that and I think we're close to having something we can check in ... need
testing from the Macromedia folks though, really.

Revision history for this message
In , Roc-ocallahan (roc-ocallahan) wrote :

It would be great if we can land this for 1.8/FF 1.1. I'll be happy to review it
when the code is ready.

Revision history for this message
In , Bzbarsky (bzbarsky) wrote :

Pete, do you want to take this bug and address roc's comments?

Revision history for this message
In , Philringnalda (philringnalda) wrote :

*** Bug 307640 has been marked as a duplicate of this bug. ***

Revision history for this message
In , Bugzilla-spray (bugzilla-spray) wrote :

*** Bug 292149 has been marked as a duplicate of this bug. ***

Revision history for this message
In , Bugzilla-spray (bugzilla-spray) wrote :

*** Bug 297066 has been marked as a duplicate of this bug. ***

Revision history for this message
In , Eric Caron (eric-caron) wrote :

Does anyone know who can be contacted regarding this long-standing issue? Perhaps somebody from another X project, maybe a Gnome/KDE developer? Maybe compiling a list of websites where this becomes an issue would show the severity of this problem.

Revision history for this message
In , Bzbarsky (bzbarsky) wrote :

Someone should just take the patch in this bug, update it to review comments and trunk, and get it checked in...

Revision history for this message
In , Pete-mozdevgroup (pete-mozdevgroup) wrote :

I had this working about a year ago ..

Revision history for this message
In , Changdong-cui (changdong-cui) wrote :

(In reply to comment #29)
> + exposeEvent.drawable =
> (Drawable)win->GetNativeData(NS_NATIVE_WIDGET);
>
> You want NS_NATIVE_WINDOW so that this can work in GTK1.
>
> Other than that, this looks pretty good on the painting side. But the event
> handling is missing. You need something like this:
>
> http://lxr.mozilla.org/mozilla/source/layout/generic/nsObjectFrame.cpp#3883
>
> Fix that and I think we're close to having something we can check in ... need
> testing from the Macromedia folks though, really.

a field "window" in the "NPWindow" Structure, such as In Windows Platform, just explained as a hdc.
can we add a variable in the class "ns4xPluginInstance" to hold the Drawable.
if it is windowless. then we can retrieve it. if it is windowed ,we just omit it.

Revision history for this message
In , Marcoos+bmo (marcoos+bmo) wrote :

The KDE guys have recently fixed a similar problem in KHTML.
See http://bugs.kde.org/show_bug.cgi?id=31121 .

Revision history for this message
In , Roc-ocallahan (roc-ocallahan) wrote :

That is really a different problem. As far as I can tell, what they've done there doesn't allow stuff like drawing text over a plugin.

Revision history for this message
In , Bugzilla-spray (bugzilla-spray) wrote :

*** Bug 273585 has been marked as a duplicate of this bug. ***

Revision history for this message
In , Braden (braden) wrote :

*** Bug 189608 has been marked as a duplicate of this bug. ***

Revision history for this message
Martin Flack (martin-martinflack) wrote : flash plugin always rendered on top of html

Binary package hint: firefox

The Flash plugin output always seems "higher" than HTML.

e.g. in Firefox 1.5.0.4 visit:
http://www.ishares.com/home.jhtml
Try to operate the menus at left or top. The boxes are obscured by the Flash content.

Revision history for this message
Tomasz Dominikowski (dominikowski) wrote :

This is true. I can confirm, highly annoying sometimes.

Changed in firefox:
status: Unconfirmed → Confirmed
Revision history for this message
In , Marcoos+bmo (marcoos+bmo) wrote :

Well, Google Video puts HTML divs over Flash on Linux and it somehow magically works in Linux Firefox.

I analyzed their code - it seems they put an iframe between the <embed> and the <div>, set the iframe's display to 'none' via CSS and then to 'block' via JS (setting it in a stylesheet does not work).

More here:
http://marcoos.wordpress.com/2006/07/21/html-div-above-a-flash-animation-on-linux-its-possible/

A working proof-of-concept:
http://beta.aviary.pl/marcoos/flashlinux/

Revision history for this message
In , Marcoos+bmo (marcoos+bmo) wrote :

*** Bug 351208 has been marked as a duplicate of this bug. ***

Revision history for this message
In , Marcelo-sales (marcelo-sales) wrote :

Don't know if this information is usefull, but pages with menus that are incorrectly shown under flash objects in Firefox are correctly displayed in KDE's Konqueror using the very same flash plug-in. Some examples:
http://www.asus.com/index.aspx
http://www.bovespa.com.br
http://www.natura.com.br

Maybe it's worth to contact KDE developers to get some information about how did they solve the problem in Konqueror.

Revision history for this message
In , Roc-ocallahan (roc-ocallahan) wrote :

I know how they solved it in Konqueror and I've got a similar fix in bug 345669.

Revision history for this message
In , Gavin Sharp (gavin-sharp) wrote :

(In reply to comment #46)
> I know how they solved it in Konqueror and I've got a similar fix in bug
> 345669.

Did you mean bug 339548?

Revision history for this message
In , Roc-ocallahan (roc-ocallahan) wrote :

Yes.

Revision history for this message
In , Bugzilla-spray (bugzilla-spray) wrote :

*** Bug 354322 has been marked as a duplicate of this bug. ***

Revision history for this message
In , Netdragon (netdragon) wrote :

I have Konqueror 3.5.1 and Flash 9 and I'm still seeing the issue with the Asus link. Are you sure Konqueror fixed it?

Revision history for this message
In , Netdragon (netdragon) wrote :

I see... It was Konqueror 3.5.2 and up. I tested with Konqueror 3.5.5 and WMODE was honored.

Revision history for this message
In , Bugzilla-spray (bugzilla-spray) wrote :

*** Bug 348641 has been marked as a duplicate of this bug. ***

Revision history for this message
In , Philringnalda (philringnalda) wrote :

*** Bug 359983 has been marked as a duplicate of this bug. ***

Revision history for this message
In , Philringnalda (philringnalda) wrote :

*** Bug 360722 has been marked as a duplicate of this bug. ***

Revision history for this message
In , Roc-ocallahan (roc-ocallahan) wrote :

Created attachment 247032
updated to trunk

Updated the patch to trunk. Need to implement event handling and do some testing.

Changed in firefox:
status: Unknown → Unconfirmed
Revision history for this message
In , Bugzilla-spray (bugzilla-spray) wrote :

*** Bug 362988 has been marked as a duplicate of this bug. ***

David Farning (dfarning)
Changed in firefox:
assignee: nobody → mozillateam
importance: Undecided → Medium
Revision history for this message
Freddy Martinez (freddymartinez9) wrote : Re: flash plugin always rendered on top of html

Marking it as a flash bug. What versions do you all have?

Revision history for this message
Jan Niklas Hasse (jhasse) wrote :

i've tested both, 7 and 9 (beta). But in my opinion it's not a flash bug, because it works in konqueror.

Revision history for this message
Freddy Martinez (freddymartinez9) wrote :

Perhaps it is a problem with the HTML or CSS. I can not reproduce it on my system:
Feisty Herd 2
Fx 2.0.01
Flash 9 final
Which version are you running.

Revision history for this message
Jan Niklas Hasse (jhasse) wrote :

If you visit this site:
http://www.cherry.de/deutsch/cid_index.htm
The menu is over the flash stuff?

I'm running Edgy with Flash 9 and Firefox 2.0.0.1

I've attached a screenshot showing the bug.

Revision history for this message
In , Polidobj (polidobj) wrote :

*** Bug 370377 has been marked as a duplicate of this bug. ***

Revision history for this message
Nicolò Chieffo (yelo3) wrote : Re: flash plugin always rendered on top of html

the same thing happens to me in other sites too:
www.asus.it for example.
I've also noticed that epiphany behaves correctly. so I will change the package from flash to firefox.

Revision history for this message
Nicolò Chieffo (yelo3) wrote :

epiphany works well. it is a firefox bug

Revision history for this message
In , Philringnalda (philringnalda) wrote :

*** Bug 371294 has been marked as a duplicate of this bug. ***

Revision history for this message
Jan Niklas Hasse (jhasse) wrote : Re: flash plugin always rendered on top of html

Still not working here in feisty with epiphany.
Doesn't epiphany use Gecko, too?

Revision history for this message
Nicolò Chieffo (yelo3) wrote : Re: [Bug 49613] Re: flash plugin always rendered on top of html

Sorry, I had disabled javascript! it's my fault.

Revision history for this message
Nicolò Chieffo (yelo3) wrote : Re: flash plugin always rendered on top of html

evaluation error

David Farning (dfarning)
Changed in flashplugin-nonfree:
assignee: mozillateam → mozilla-bugs
Revision history for this message
In , Philringnalda (philringnalda) wrote :

*** Bug 251823 has been marked as a duplicate of this bug. ***

Revision history for this message
In , Polidobj (polidobj) wrote :

*** Bug 372104 has been marked as a duplicate of this bug. ***

Changed in firefox:
status: Unconfirmed → Rejected
Revision history for this message
Nicolò Chieffo (yelo3) wrote : Re: flash plugin always rendered on top of html

update (it was a duplicate)

Changed in firefox:
status: Unknown → In Progress
Revision history for this message
Lucas Arruda (lucasarruda) wrote :

Please, help report on Adobe's portal [0], this bug.
They don't have it there.

Go on the survey and write about this problem, telling them to include it. Make you part to contribute.

[0] http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=4a8d52ae

Revision history for this message
Sitsofe Wheeler (sitsofe) wrote :
Revision history for this message
In , Philringnalda (philringnalda) wrote :

*** Bug 374119 has been marked as a duplicate of this bug. ***

Revision history for this message
In , Pascal d'Hermilly (pascal-tipisoft) wrote :

Robert, how is the patch coming along?

Revision history for this message
In , Kevin Brosnan (kbrosnan) wrote :

*** Bug 376818 has been marked as a duplicate of this bug. ***

Revision history for this message
In , Kevin Brosnan (kbrosnan) wrote :

*** Bug 369948 has been marked as a duplicate of this bug. ***

Revision history for this message
In , Tc-opticalgraphics (tc-opticalgraphics) wrote :

(In reply to comment #43)
> Well, Google Video puts HTML divs over Flash on Linux and it somehow magically
> works in Linux Firefox.
>
> I analyzed their code - it seems they put an iframe between the <embed> and the
> <div>, set the iframe's display to 'none' via CSS and then to 'block' via JS
> (setting it in a stylesheet does not work).
>
> More here:
> http://marcoos.wordpress.com/2006/07/21/html-div-above-a-flash-animation-on-linux-its-possible/
>
> A working proof-of-concept:
> http://beta.aviary.pl/marcoos/flashlinux/
>

The flash, the proof-of-concept works fine for me, but it still does not fix the problem on other websites. Even "Adobe.com" still gets the same problem.
i would have to say asking thousands of sites to implement some sort of fix for the problem would be asking too much. They wont do it, trust me. Implementing a fix in Firefox would be the ideal solution.

It looks like someone is working on the patch, I am willing to test if you have something...

Revision history for this message
In , Kevin Brosnan (kbrosnan) wrote :

*** Bug 377063 has been marked as a duplicate of this bug. ***

Revision history for this message
In , DarkMageZ (darkmagez) wrote :

hey, is there any chance of a revised version of the patch for the current trunk? the current version doesn't apply cleanly and my noobie attempts to make it apply end up making the build result in a build error (doesn't error without my hacked up version of the patch).

Revision history for this message
In , Zbigniew Luszpinski (zbiggy) wrote :

Adobe going to fix most known flash visual issues by using XEmbed?

http://blogs.adobe.com/penguin.swf/2007/04/bling.html

Revision history for this message
In , Wsheets (wsheets) wrote :

I just tried the plugin from your adobe.com link and it works fine on trunk. I hope it has something to do with this bug :o)

Revision history for this message
In , Turo-macromedia (turo-macromedia) wrote :

(In reply to comment #69)
> I just tried the plugin from your adobe.com link and it works fine on trunk.
>
That means you did not understand the problem. The diamond is supposed to be alpha composited on top of the HTML page. Right now the background always stays plain white. If it would be working there would be no white. No browser on Linux or BSD supports this right now.

The patch attached to this bug is trying to address this, but right now it segfaults the test plugin and no events are dispatched. This needs to be fixed before we can make any progress.

Revision history for this message
Johnre (john-re) wrote : Re: flash plugin always rendered on top of html

Hi - Will you please see if you can load the samsung.com web site properly using fiesty & fiesty's firefox, & tell me your result? Thanks. It's not displaying properly for me on this fiesty install.

I see white rectangles that block out parts of the page.

Also, the dropdown menu text is blocked by the pictures/images. (ex, the "products" menu selection.

here's some url's of screenshots: http://img367.imageshack.us/img367/8278/samsugcomproductsfirefoju5.png http://img87.imageshack.us/img87/197/samsugcomproductsmenuovyv9.png

Revision history for this message
In , Karlt (karlt) wrote :

Created attachment 265192
updated to trunk 2007-05-17

(Not working yet)

Revision history for this message
In , Karlt (karlt) wrote :

Created attachment 266368
patch using gfxXlibNativeRenderer

This patch provides windowless drawing support and the modified unixprinting test plugin works as expected with the dhtml and background in attachment 169652. (It draws a centered rectangle and also the dirty rectangle outline for testing.)

The DiamondX plugin needs some modification to work with this windowless API.

The major changes from the previous patch are:

 * Use gfxXlibNativeRenderer to get a Drawable.
   (The rendering context doesn't have a gdk widget for a Drawable.)

 * Using an XGraphicsExposeEvent to describe the Drawable, display, and the
   dirty rectangle.

 * Removed the XGraphicsExposeEvent that described the port rectangle relative
   to the containing window origin. If necessary, this is probably better
   done with an XConfigureEvent. But AFAIK it is only used on Windows for
   interpreting mouse events. X11 mouse events have root window coordinates
   so I don't think the information will be needed.

 * The NPSetWindowCallbackStruct ws_info field of the window in the SetWindow
   call contains the visual to use, but currently none of the other fields
   contain useful information. The display for the Document window could be
   useful as the display for the Drawable need not be the same. Is anything
   else needed here?
   (http://developer.mozilla.org/en/docs/NPSetWindowCallbackStruct)

Note that the window field of the window in the SetWindow call is not set as
the Drawable is provided by the XGraphicsExposeEvent. Perhaps there is
something else this window field can be used for? Document or containing
window (one of which can be obtained through
nsPluginInstancePeerVariable_NetscapeWindow)?

Still to do:

 * Events

 * More testing / optimization.

 * ? printing

Set NSPR_LOG_MODULES=nsObjectFrame:4,Plugin:9,PluginNPP:9,PluginNPN:9
for debug output.

Revision history for this message
In , Carglue (carglue) wrote :

(In reply to comment #72)
> Created an attachment (id=266368) [details]
> patch using gfxXlibNativeRenderer

It should be stated that the above patch will not work for Moz 1.8.x branches. The gfxXlibNativeRenderer source files it updates are only available in SeaMonkey.

Is it possible to mangle any of the other patches to work against the current FIREFOX_2_0_0_3_RELEASE sources? I've tried using the patches from comments #71 and #26 and neither will patch cleanly.

Revision history for this message
In , Karlt (karlt) wrote :

Created attachment 267541
X11 windowless plugin support 0.1

This patch includes the previous (drawing) patch and adds event dispatching.
It should be very usable now.

The mouse events have x and y relative to the plugin rectangle origin. This
seemed the most useful information to me, but is not the same as what is
provided on Windows. (I think on Windows the mouse events are relative to the
containing window.)

As the XEvents sent to the plugin are synthesized and there is not a native
window corresponding to the plugin rectangle, some of the fields of the
XEvents are not set to their normal Xserver values. e.g. Key events don't
have a position. However the information should be complete enough. (It is
enough for the DiamondX plugin, but this plugin needs some modification for
windowless support).

The mouse events do not yet have the root window coordinates set.
Are these needed?

It seems that Mozilla doesn't send mouse scroll events to (windowless)
plugins. Not sure if this is intentional or not.

This patch also activates the code for the NPNVnetscapeWindow GetValue call,
which returns the containing native window (not the document window as is
sometimes returned on Windows).

Revision history for this message
In , Karlt (karlt) wrote :

Created attachment 267964
 X11 windowless plugin support 0.2

Modifications include:

* Setting window->ws_info->colormap.

* Making the NPNVnetscapeWindow GetValue call return an XID
  instead of a GdkWindow*.

* Sanitizing the dirty rect in the GraphicsExpose event so that it does not
  extend beyond the plugin port rect.

Revision history for this message
In , Karlt (karlt) wrote :

Created attachment 267965
windowless mode for diamondx-0.1

(diamondx-0.1 is available from http://multimedia.cx/diamondx/)

Revision history for this message
In , Adam Guthrie (ispiked) wrote :

*** Bug 384337 has been marked as a duplicate of this bug. ***

Revision history for this message
In , T-matsuu (t-matsuu) wrote :

Created attachment 270102
X11 windowless plugin support 0.2.1

fit to the latest trunk.
Some part of the attachment 267694 is applied by bug 384965 and bug 380984.

Revision history for this message
In , T-matsuu (t-matsuu) wrote :

Created attachment 270111
 X11 windowless plugin support 0.2.2

more fit to the latest trunk because of the checkin of the bug 347743.

Revision history for this message
In , Karlt (karlt) wrote :

(In reply to comment #73)
> Is it possible to mangle any of the other patches to work against the current
> FIREFOX_2_0_0_3_RELEASE sources? I've tried using the patches from comments
> #71 and #26 and neither will patch cleanly.

I'm not familiar enough with the 1.8 branch to know the best way to obtain the drawable. You'd need something that was a mix of the patches in comment #20 and/or #26 and the latest patches.

Revision history for this message
In , Karlt (karlt) wrote :

Comment on attachment 267965
windowless mode for diamondx-0.1

See bug 386144 for an updated version.

Revision history for this message
In , Karlt (karlt) wrote :

Comment on attachment 270111
 X11 windowless plugin support 0.2.2

(In reply to comment #79)
> more fit to the latest trunk because of the checkin of the bug 347743.

Thanks for resolving the conflict, but please use the latest patches in the other bugs in the dependency tree:

https://bugzilla.mozilla.org/showdependencytree.cgi?id=137189&hide_resolved=1

The updated implementation is awaiting review in bug 384845, bug 384975, and bug 384988. The unixprinting example plugin is available (unchanged) in bug 386144.

Thanks to everyone who contributed to this.

Revision history for this message
In , Karlt (karlt) wrote :

Implementation checked in.

Changed in firefox:
status: In Progress → Fix Released
Revision history for this message
In , Julian Sikorski (belegdol) wrote :

Woohoo! At last :)

Revision history for this message
Nicolò Chieffo (yelo3) wrote : Re: flash plugin always rendered on top of html

EUREKA! fix released!

Revision history for this message
Alexander Jones (alex-weej) wrote :

Holy... did I wake up on April Fools' Day 2008?

Revision history for this message
Nicolò Chieffo (yelo3) wrote : Re: [Bug 49613] Re: flash plugin always rendered on top of html

I've read it, but the bug is not fixed yet, only a prerequisite of
this bug is fixed! :D

Revision history for this message
zmass (zrm126194) wrote : Re: flash plugin always rendered on top of html

Hey.
I am having this same problem.
But how do i get the patch to correct it?
Sorry still new to Linux/Firefox.
Thanks!

Revision history for this message
In , Jeroen8 (jeroen-van-agt) wrote :

Tested with Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9a7pre) Gecko/2007070905 Minefield/3.0a7pre. It seems that transparent flash still does not work

Revision history for this message
In , Julian Sikorski (belegdol) wrote :

The transparency needs support on the flash plugin side as well. IIRC it's not there yet.

Revision history for this message
In , Leon-sha-oracle (leon-sha-oracle) wrote :

This feature needs plug-in's support.
Flash player does not support this feature yet.
(In reply to comment #85)
> Tested with Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9a7pre)
> Gecko/2007070905 Minefield/3.0a7pre. It seems that transparent flash still does
> not work
>

Revision history for this message
camside (mad-camside) wrote : Re: flash plugin always rendered on top of html

Have downloaded latest version of Flash 9,0,48,0 and can now veiw www.samsung.com correctly

Revision history for this message
futwick (futwick) wrote :

I have installed the latest plug-in (9,0,48,0) from Adobe but JavaScript menus are still appearing underneath Flash movies. The Adobe.com home page is a good example.

Revision history for this message
In , Adam Guthrie (ispiked) wrote :

*** Bug 389549 has been marked as a duplicate of this bug. ***

Revision history for this message
In , gneman (luis6674) wrote :

(In reply to comment #87)
> This feature needs plug-in's support.
> Flash player does not support this feature yet.

I don't know where the problem is, if in flash plugin or Firefox, but in Konqueror transparent flash works fine, so it must be possible to fix.

Thanks.

Revision history for this message
In , Roc-ocallahan (roc-ocallahan) wrote :

Try drawing text (with no background color) over a Flash object in KHTML.

Revision history for this message
In , Marcoos+bmo (marcoos+bmo) wrote :

*** Bug 389929 has been marked as a duplicate of this bug. ***

Revision history for this message
In , Fabio Ornellas (fabio-ornellas) wrote :

This bug has been on market for quite some time, and those of us who use FF under Linux suffer a lot with it.

I know now it is Adobe´s responsibility to fix this, however, since Flash is a must have plugin nowadays, would it not be possible to make a (dirty) fix on the code on FF to workaround it temporarily? Konqueror seems to have done it, so in theory, FF can do it also. I can note use some sites the way it is now, it is terrible...

I´ve already contacted Adobe on this, I think all of us must do the same to make to pressure them (since FF folks blame them).

Until Adobe fix it, I (and all Linux + FF users) surely would benefit a lot from this code hack (if it is possible).

Thank you.

Revision history for this message
In , Roc-ocallahan (roc-ocallahan) wrote :

Adobe wants to fix it. They had received a lot of user feedback and in fact were pressuring us to fix our side (which we have done). So don't annoy them please.

What KHTML does is a partial solution. It's not going to happen for 1.9 although we will be able to do it after that.

Revision history for this message
In , Fabio Ornellas (fabio-ornellas) wrote :

OK, thank you for your attention.

Revision history for this message
Freddy Martinez (freddymartinez9) wrote : Re: flash plugin always rendered on top of html

It seems to have been fixed upstream, has this been fixed in the latest flash release? Alex, will this be fixed for 2.0.0.6? It seems to have been fix committed to the 1.8 Mozilla branch and I poked around but I don't see how that corresponds to upstream releases.

Revision history for this message
In , Matti-mversen (matti-mversen) wrote :

*** Bug 395598 has been marked as a duplicate of this bug. ***

Revision history for this message
In , Chihwa93 (chihwa93) wrote :

Please release bug fixed version of FireFox ASAP.
Still, there is no known workaround to avoid this problem on Linux.
And, we've been waiting for more than five years.

Revision history for this message
Stéphane Loeuillet (leroutier) wrote : Re: flash plugin always rendered on top of html

Afaik, it has been fixed in Gecko 1.9a7, which means : not until Firefox 3.0 (FF 2.0 is based on Gecko 1.8)

Revision history for this message
Jan Niklas Hasse (jhasse) wrote :

but it isn't fixed in adobe's flash plugin, is it?

Revision history for this message
In , Matti-mversen (matti-mversen) wrote :

*** Bug 402835 has been marked as a duplicate of this bug. ***

Revision history for this message
In , Polidobj (polidobj) wrote :

*** Bug 402741 has been marked as a duplicate of this bug. ***

Revision history for this message
In , Sur Demir (surdemir) wrote :

Menu on the left of http://www.yapikredi.com.tr/tr-TR/bireysel_bankacilik/main.aspx is almost invisible, whereas it displays OK on windows with a blueish light background.
Is this the same bug?

Revision history for this message
In , Matti-mversen (matti-mversen) wrote :

*** Bug 404930 has been marked as a duplicate of this bug. ***

Revision history for this message
In , Karlt (karlt) wrote :

(In reply to comment #99)
> Menu on the left of
> http://www.yapikredi.com.tr/tr-TR/bireysel_bankacilik/main.aspx is almost
> invisible, whereas it displays OK on windows with a blueish light background.
> Is this the same bug?

I can't see any problems with that page on Linux here, but I think it is a different issue. It would be best to file a separate bug with some screenshots.

Revision history for this message
In , Jan Klopper (janklopper-innerheight) wrote :

(In reply to comment #101)
> (In reply to comment #99)
> > Menu on the left of
> > http://www.yapikredi.com.tr/tr-TR/bireysel_bankacilik/main.aspx is almost
> > invisible, whereas it displays OK on windows with a blueish light background.
> > Is this the same bug?
>
> I can't see any problems with that page on Linux here, but I think it is a
> different issue. It would be best to file a separate bug with some
> screenshots.
>

It is indeed the same bug, but manivested trough a lack of transparancy of the plugin window.

The flash image seems to be black in color, where on windows and mac this black would be transparent and thus allow the blue of the lower half of the menu to shine trough. A quick fix for the webmaster is to select the same color blue as the background color of his flash movie instead of the black he's currently using. Nothing new here, so no need for a new bug.

Revision history for this message
In , Matti-mversen (matti-mversen) wrote :

*** Bug 407129 has been marked as a duplicate of this bug. ***

Revision history for this message
In , Matti-mversen (matti-mversen) wrote :

*** Bug 407924 has been marked as a duplicate of this bug. ***

Revision history for this message
In , stereoit (smol-robert) wrote :

Hello, may I politely ask about the status of this bug? It seems as resolved/fixed however I still see Duplicate reports coming in (that means users are still suffering from this bug right?). If this is still pending, can someone quickly describe current status? Last reasonable update is from July.

Thank you

Revision history for this message
In , Martijn-martijn (martijn-martijn) wrote :

It's fixed on trunk, which means the fix will be in Firefox 3.
The fix is not on branch, which means the fix is not in Firefox 2.

And I heard something about Adobe needing to update their plugin to make use of the new windowless plug-in support on Linux, so it might not be there yet, to be able to see.

Revision history for this message
In , Mike-cchtml (mike-cchtml) wrote :

Am I missing something? Firefox 3 beta 1 doesn't appear to be fixed. Flash 9.0 r115 is still above HTML elements.

Revision history for this message
In , Martijn-martijn (martijn-martijn) wrote :

Lie I said in comment 106, Adobe needs to update their plugin to be able to make use of this new feature.
Also note comment 93.

Please read previous comments in this bug, it will likely answer any questions you might have.

Revision history for this message
In , Matti-mversen (matti-mversen) wrote :

*** Bug 407924 has been marked as a duplicate of this bug. ***

Revision history for this message
Sergio Zanchetta (primes2h) wrote : Re: flash plugin always rendered on top of html

Ubuntu Gutsy updated.
I have been having this problem using firefox since long time.

Changed in firefox:
status: New → Confirmed
Revision history for this message
Stanley Sokolow (overbyte) wrote :

The problem still occurs on Firefox 2.0.0.10 in Hardy 8.04 alpha-1, and on Firefox 2.0.0.11 in Gutsy 7.10. Go to www.comcast.com to see an example. The submenus are truncated on the right by the adjacent Flash frame. The example renders correctly on the Windows version of Firefox.

Revision history for this message
In , Fotemac (fotemac) wrote :

(In reply to comment #108)
> Lie I said in comment 106, Adobe needs to update their plugin to be able to
> make use of this new feature.
> Also note comment 93.
> Please read previous comments in this bug, it will likely answer any questions
> you might have.

Upgrades of the Adobe Flash plug-in have occurred after this bug was marked as RESOLVED FIXED, so perhaps the question should be asked more explicitly as whether the appropriate communication between the Firefox and Adobe Flash developers about this matter also has occurred.

Revision history for this message
In , hdante (hdante) wrote :

(In reply to comment #110)
>
> Upgrades of the Adobe Flash plug-in have occurred after this bug was marked as
> RESOLVED FIXED, so perhaps the question should be asked more explicitly as
> whether the appropriate communication between the Firefox and Adobe Flash
> developers about this matter also has occurred.
>

Excellent point.

BTW, this bug/feature is 5 years old, I'm glad it's being fixed and congratulate the mozilla team. You have no idea how much harm this bug has done.

Revision history for this message
In , Karlt (karlt) wrote :

(In reply to comment #110)
> Upgrades of the Adobe Flash plug-in have occurred after this bug was marked as
> RESOLVED FIXED, so perhaps the question should be asked more explicitly as
> whether the appropriate communication between the Firefox and Adobe Flash
> developers about this matter also has occurred.

See comment #93. Windowless support in Flash may require significant changes to the plug-in, and I know Adobe are working on this.

Revision history for this message
In , Matti-mversen (matti-mversen) wrote :

*** Bug 410033 has been marked as a duplicate of this bug. ***

Revision history for this message
Xeno Campanoli (xeno) wrote : Re: flash plugin always rendered on top of html

A similar problem occurs with the latest version of Rhapsody Online: http://www.rhapsody.com. You'll see when you go to the site that the dropdown menus for both "My Music" and "How It Works" are occluded by the flash slider panel. This is a pretty good site I think, one which attracts users to Linux with it's subscription service. Having it not work there will scare away people from Linux I should think. Seems like a high priority to me.

Revision history for this message
Stanley Sokolow (overbyte) wrote :

The bug has been kicked around on the Firefox Bugzilla site for a long time. Apparently they have figured out that it's a problem with the Adobe Flash plug-in for Linux. See https://bugzilla.mozilla.org/show_bug.cgi?id=137189 . The fix will require that Adobe change the plug-in to use a new feature called "windowless plug-in support" on Linux. That's not expected to occur until after Firefox 3 is released, it seems.

Revision history for this message
Alexander Sack (asac) wrote :

the firefox bug is fixed in firefox-3.0. Now we are waiting for adobe to fix the plugin side.

Changed in firefox-3.0:
status: New → Fix Released
Revision history for this message
Alexander Sack (asac) wrote :

firefox 2 won't receive a fix.

Changed in firefox:
status: Confirmed → Won't Fix
Revision history for this message
In , Reed Loden (reed) wrote :

*** Bug 412156 has been marked as a duplicate of this bug. ***

Revision history for this message
ehtz28 (gaius-artemis) wrote : Re: flash plugin always rendered on top of html

flashplugin-nonfree (Ubuntu) ---- inportance: medium????????????

Medium???? for God's sake there are some web pages that you can't use at all.... I would said, this bug is definetly CRITICAL!

Revision history for this message
manolo (mac-man2005) wrote :

<email address hidden>> <email address hidden>
Bcc: <email address hidden>
References: <email address hidden> <email address hidden>
Subject: Re: [Bug 49613] Re: flash plugin always rendered on top of html
Date: Sun, 20 Jan 2008 11:56:25 +0100
MIME-Version: 1.0
Content-Type: text/plain;
 format=flowed;
 charset="utf-8";
 reply-type=original
Content-Transfer-Encoding: 7bit
X-Unsent: 1
X-Priority: 3
X-MSMail-Priority: Normal
Importance: Normal
X-Mailer: Microsoft Windows Live Mail 12.0.1606
X-MimeOLE: Produced By Microsoft MimeOLE V12.0.1606

Well, you're right.

Actually I realized that Firefox and IExplorer crash when try to load some
flash videos.

I supposed it was MEDIUM because it doesn't damages your data anyway... but
no doubt it become a more relevant problem than I thought at the beginning.

--------------------------------------------------
From: "Prisma" <email address hidden>
Sent: Sunday, January 20, 2008 9:49 AM
To: <email address hidden>
Subject: [Bug 49613] Re: flash plugin always rendered on top of html

> flashplugin-nonfree (Ubuntu) ---- inportance: medium????????????
>
> Medium???? for God's sake there are some web pages that you can't use at
> all.... I would said, this bug is definetly CRITICAL!
>
> --
> flash plugin always rendered on top of html
> https://bugs.launchpad.net/bugs/49613
> You received this bug notification because you are a direct subscriber
> of a duplicate bug.
>

Revision history for this message
Jordan Erickson (lns) wrote : Re: flash plugin always rendered on top of html

I can confirm this for one of my client's (rather largely used) websites:

http://www.myclubmylife.com/Pages/Default.aspx

The flash content will always cover the drop-down menus near the top of the page. This is an extremely severe bug for us, as it is causing the club directors to not want to move to Ubuntu from Windows (which is offered to the clubs for free from MS). Also, a bug with 20 marked duplicates should probably have some special attention put toward fixing it for the current stable release (2.0), whether it's an Adobe issue or not. Just MHO, though.

Revision history for this message
In , Matti-mversen (matti-mversen) wrote :

*** Bug 420157 has been marked as a duplicate of this bug. ***

Revision history for this message
JerryC (jerr-s2001) wrote : Re: flash plugin always rendered on top of html

I'm using Firefox 2.0.0.12 with Ubuntu Gutsy Gibbon and I have this problem on the Citicard log in site
https://www.citicards.com/cards/wv/home.do?

My quick fix was to add an Adblock filter of "*.swf" for that page. Now works fine. I may be missing other Flash stuff on the site but I don't care. At least now I can login and get beyond this page.

Jerry

Revision history for this message
Bart Verwilst (verwilst) wrote :

FYI. I tried the https://www.citicards.com/cards/wv/home.do? site mentioned in the above comment, and i see a white flash block covering 99% of the website. I'm using Firefox 3.0 beta5 with latest Ubuntu Hardy..

Revision history for this message
Dara Adib (daradib) wrote :

Bart Verwilst: That is a different bug. It is the "resurgence" of bug 177856 when Firefox 3.0 Beta 5 was added to repository.

Revision history for this message
In , Samuel Lidén Borell (samuellb) wrote :

This bug has also been reported in Adobe's bug tracker:
https://bugs.adobe.com/jira/browse/FP-80

Revision history for this message
stetzwebs (stetzwebs) wrote : Re: flash plugin always rendered on top of html

Yes, I concur, it happens on my machine too.

Gutsy Gibbon Ubuntu 7.10

Never happened in Windows, not a flash problem either.

Revision history for this message
stetzwebs (stetzwebs) wrote :

I confirm, same thing happens on my machine

Ubuntu 7.10 Gutsy Gibbon

Revision history for this message
stetzwebs (stetzwebs) wrote :

May I add that I have Firefox 2.0.0.13, and it still occurs.

Revision history for this message
Jan Niklas Hasse (jhasse) wrote :

@stetswebs
https://bugs.launchpad.net/ubuntu/+source/flashplugin-nonfree/+bug/49613/comments/29

@Prisma
This is MEDIUM because we can't do anything about it. We have to wait for adobe to fix the plugin.

Revision history for this message
In , nadavkav (nadavkav) wrote :

i am using FF 3 pre with Flash 115 and i do not see transparency
on several sites i use.

do you have a site that is using transparency i can check it ?
what versions of FF and Flash should i use to get transparency working ?

Revision history for this message
In , Martijn-martijn (martijn-martijn) wrote :

Nadav, see comment 93.

Revision history for this message
In , Captainn-adcstudio (captainn-adcstudio) wrote :

I don't see it mentioned here, but adobe claims that this is fixed on their end:

http://blogs.adobe.com/penguin.swf/2007/12/flash_player_9_update_3_final.html

"Improvement over the string of beta releases: This new XEmbed-enabled plugin should work with Opera now."

The XEmbed part being the important bit.

Revision history for this message
In , nadavkav (nadavkav) wrote :

please, i read comment 93 :-)

i just want to confirm (in some way) that i have a FF version that this issue is solved from the FF perspective.

i have XEmbed installed on FF 3 pre and i do not see it working
do you have a FF version i can confirm this issue is solved for ?

i opened https://bugs.adobe.com/jira/browse/FP-80 and i just saw...
"Flash plugin has to be updated to make use of this functionality."
(they probably thought i was referring to FF 2.x)

so i guess that they have to fix something on their part

it all started... when i hoped this was fixed when i read :
http://blogs.adobe.com/penguin.swf/2007/12/flash_player_9_update_3_final.html
which does not work in opera (9.5 latest snapshot) :-(

thanks :-)

Revision history for this message
In , Braden (braden) wrote :

If Adobe does claim such a thing, that ain't it.

Converting a plug-in to XEmbed does not automatically make it windowless.

Revision history for this message
In , Captainn-adcstudio (captainn-adcstudio) wrote :

My only concern is that, as I've been following this here and on the blogs for a while, it seems like both sides (Mozilla and Adobe) think that their parts are finished (and have presumably stopped working on the problem).

See comment #106 for possible source of confusion.

I'll point out that it is NOT working yet, just to be sure. :-)

Revision history for this message
In , Roc-ocallahan (roc-ocallahan) wrote :

As far as I know, Adobe has not released anything that supports windowless mode on X, nor have they claimed to. Until they do, the problem is in their court.

Revision history for this message
In , Thomas-c (thomas-c) wrote :

Could you please retest with the latest Player (v9.0.124) ?

Revision history for this message
In , Jan Niklas Hasse (jhasse) wrote :

doesn't work here, why should it?

Revision history for this message
In , Captainn-adcstudio (captainn-adcstudio) wrote :

Not working here either, with Compiz on or off. Ubuntu 7.1 x86, and Ubuntu 8 AMD64 (with mozplugger - which is probably a whole different thing).

Revision history for this message
In , nadavkav (nadavkav) wrote :

not working with FF 3 pre + Flash 124 :-(

if you have a working FF version please let me know.

Revision history for this message
In , Jan Niklas Hasse (jhasse) wrote :

Nadav, FF 3 has got windowless plug-in support, it's the right adobe flash plug-in version we have to wait for.

Revision history for this message
In , nadavkav (nadavkav) wrote :

Jan, how can i test that ?

especially to show Adobe developers that FF is ready and that it is a Player issue.

it seems (to me) that they are waiting for FF to fix something for some reason.

Revision history for this message
In , Jan Niklas Hasse (jhasse) wrote :

As said in #93, Adobe is already working on this. It's not that easy, so it will take some time.

They just need to open this bug report to know that it has been fixed in FF ;)
What make you believe that they are waiting for FF to fix it?

Revision history for this message
In , Captainn-adcstudio (captainn-adcstudio) wrote :

I think the misunderstanding is that in this post:

http://blogs.adobe.com/penguin.swf/2007/04/bling.html

They introduce the XEmbed addition to the flash player, and released a test case, claiming that it will lead to possible wmode transparency in the Flash player. That set up the expectation then future posts about XEmbed seemed to be talking about this feature.

If you read it carefully, they merely say that it could lead to fixed wmode support, not that it would. So I think maybe some of us have just had the wrong idea.

Revision history for this message
In , Karlt (karlt) wrote :
Revision history for this message
brad (bradlambeth) wrote : Re: flash plugin always rendered on top of html

This bug is tolerable, but it really pisses my fiancee off to the point that she won't use the computer unless it's running xp. Nearly all of the websites she visits have some flash on them that cover up her drop down menus.

Revision history for this message
Fredrik (fredrk) wrote :

Don't agree with brad. This is really bad - to the extent that people use Windows instead and bug no 1 will never be solved.

Revision history for this message
Alexander Jones (alex-weej) wrote : Re: [Bug 49613] Re: flash plugin always rendered on top of html

This is in Adobe's hands.

I think it would maybe be possible to use something like
NSPluginWrapper to capture rendering (XDamage) and insert the image
with a windowless proxy plugin. But you might have a hard time
convincing anyone to work on that for free.

Revision history for this message
In , Bjorn (bjorn-nostvold) wrote :

Please lobby in Gnash to have this plug-in fixed as well:
https://savannah.gnu.org/bugs/?group=gnash

Revision history for this message
graydot (graydot) wrote : Re: flash plugin always rendered on top of html

I am using firefox 3.0b5 with Ubunty Hardy Heron and this problem still exists with flashplugin-nonfree

Revision history for this message
John Vivirito (gnomefreak) wrote : Re: [Bug 49613] Re: flash plugin always rendered on top of html

jsemmanuel wrote:
> I am using firefox 3.0b5 with Ubunty Hardy Heron and this problem still
> exists with flashplugin-nonfree
>
Please wait for flash 10 and RC1 to test it as this would be the best
time to test it.

--
Sincerely Yours,
     John Vivirito

https://launchpad.net/~gnomefreak
https://wiki.ubuntu.com/JohnVivirito
Linux User# 414246

Revision history for this message
Kimmo Sundqvist (kimmo-sundqvist) wrote : Re: flash plugin always rendered on top of html

Is there a temporary solution to use some other (free) flash plugin? And which one is the most recommended?

Revision history for this message
Alexander Jones (alex-weej) wrote : Re: [Bug 49613] Re: flash plugin always rendered on top of html
  • unnamed Edit (46 bytes, text/html; charset=ISO-8859-1)

Definitely isn't fixed with Flash 10.

Revision history for this message
Alexander Jones (alex-weej) wrote :
  • unnamed Edit (108 bytes, text/html; charset=ISO-8859-1)

Don't bother with swfdec, as that doesn't do it either, yet. Can't speak for
Gnash, though.

Revision history for this message
In , Kevin Brosnan (kbrosnan) wrote :

*** Bug 435857 has been marked as a duplicate of this bug. ***

Revision history for this message
Alexander Sack (asac) wrote : Re: [Bug 49613] Re: flash plugin always rendered on top of html

On Fri, May 23, 2008 at 10:41:17AM -0000, Kimmo Sundqvist wrote:
> Is there a temporary solution to use some other (free) flash plugin? And
> which one is the most recommended?
>

Test them on your own. The packages are:

 mozilla-plugin-gnash (for gnash)
 swfdec-mozilla (for swfdec)

remember to uninstall flashplugin-nonfree before trying to use them.

 - Alexander

Revision history for this message
James Payne (james-sonifex) wrote : Re: flash plugin always rendered on top of html

That will only work if the websites you use are using versions of flash lower than 7 of course.

Revision history for this message
Witold Mamczarz (m-mamczarz) wrote :

This problem did not occurred when Nvidia drivers broke down and I had to use "safe" video mode. Maybe the problem depends on graphic drivers?

Revision history for this message
Alexander Sack (asac) wrote : Re: [Bug 49613] Re: flash plugin always rendered on top of html

On Thu, Jun 05, 2008 at 10:59:35AM -0000, Witold Mamczarz wrote:
> This problem did not occurred when Nvidia drivers broke down and I had
> to use "safe" video mode. Maybe the problem depends on graphic drivers?
>

Usually not. if it was fixed for you temporarily then by accident

 - Alexander

Revision history for this message
Alexander Jones (alex-weej) wrote :

Is the Linux Adobe Flash player actually capable of rendering with alpha at
all? If so, might it also be possible to hack this into NSPluginWrapper for
proper "wmode" support?

Revision history for this message
matl1984 (martin-toth) wrote : Re: flash plugin always rendered on top of html

i have ubuntu 8.04 AMD 64 with an ati radeon xpress 200 with the ati drivers from ubuntu enabled and currently the firefox 3.0 beta 5 and flashplayer 9 installed.
flash is every time on top of the browser window.
look at http://www.maxi-cosi.com/maxicosi/default.aspx?language=de-de and try to select one of the menus (Kinderautositze, Kinderwagen, ...) the sub menu is behind the flash.
the flash is under the menu bar. if the menu expands it's submenu items they are behind the flash.
this can only be a z-index bug in firefox.

Revision history for this message
Alexander Sack (asac) wrote : Re: [Bug 49613] Re: flash plugin always rendered on top of html

On Thu, Jun 05, 2008 at 04:44:58PM -0000, Alexander Jones wrote:
> Is the Linux Adobe Flash player actually capable of rendering with alpha at
> all? If so, might it also be possible to hack this into NSPluginWrapper for
> proper "wmode" support?
>

No, adobe still doesnt support transparanet wmode. not sure about
nspluginwrapper, but it would be great if that supports it before
adobe gets to it ...

 - Alexander

Revision history for this message
Alexander Sack (asac) wrote :

On Thu, Jun 05, 2008 at 05:46:16PM -0000, matl1984 wrote:
> i have ubuntu 8.04 AMD 64 with an ati radeon xpress 200 with the ati drivers from ubuntu enabled and currently the firefox 3.0 beta 5 and flashplayer 9 installed.
> flash is every time on top of the browser window.
> look at http://www.maxi-cosi.com/maxicosi/default.aspx?language=de-de and try to select one of the menus (Kinderautositze, Kinderwagen, ...) the sub menu is behind the flash.
> the flash is under the menu bar. if the menu expands it's submenu items they are behind the flash.
> this can only be a z-index bug in firefox.
>
> ** Attachment added: "screenshot"
> http://launchpadlibrarian.net/15061758/Bildschirmfoto.png

What is news about this? maybe use mozilla-plugin-gnash or
swfdec-mozilla - they are not perfect, but should work for lots of
use-cases already.

 - Alexander

Revision history for this message
John Vivirito (gnomefreak) wrote :

Alexander Sack wrote:
> On Thu, Jun 05, 2008 at 05:46:16PM -0000, matl1984 wrote:
>> i have ubuntu 8.04 AMD 64 with an ati radeon xpress 200 with the ati drivers from ubuntu enabled and currently the firefox 3.0 beta 5 and flashplayer 9 installed.
>> flash is every time on top of the browser window.
>> look at http://www.maxi-cosi.com/maxicosi/default.aspx?language=de-de and try to select one of the menus (Kinderautositze, Kinderwagen, ...) the sub menu is behind the flash.
>> the flash is under the menu bar. if the menu expands it's submenu items they are behind the flash.
>> this can only be a z-index bug in firefox.
>>
>> ** Attachment added: "screenshot"
>> http://launchpadlibrarian.net/15061758/Bildschirmfoto.png
>
> What is news about this? maybe use mozilla-plugin-gnash or
> swfdec-mozilla - they are not perfect, but should work for lots of
> use-cases already.
>
>
> - Alexander
>
When i go to http://www.cherry.de/deutsch/cid_index.htm i am able to
reproduce this issue with Firefox-3 Flash 10 32 bit Interpid and Hardy.
This i dont think a flash issue at all i think its the keyboard picture
at the top since the menus to the right of that picture work fine, I
would have to say this is a site issue more than Flash issue ill post a
few screenshots of the menus.

--
Sincerely Yours,
     John Vivirito

https://launchpad.net/~gnomefreak
https://wiki.ubuntu.com/JohnVivirito
Linux User# 414246

Revision history for this message
John Vivirito (gnomefreak) wrote : Re: flash plugin always rendered on top of html
Revision history for this message
John Vivirito (gnomefreak) wrote :
Revision history for this message
futwick (futwick) wrote :

Adobe.com home page in Firefox 3 running on Windows Vista

Revision history for this message
futwick (futwick) wrote :

Adobe.com home page in Firefox 3 running on Ubuntu

Revision history for this message
Alexander Sack (asac) wrote : Re: [Bug 49613] Re: flash plugin always rendered on top of html

On Fri, Jun 06, 2008 at 10:19:52AM -0000, futwick wrote:
> Adobe.com home page in Firefox 3 running on Ubuntu
>
> ** Attachment added: "Adobe.com home page in Firefox 3 running on Ubuntu"
> http://launchpadlibrarian.net/15081007/Adobe.com-FF3-Ubuntu.png
>

This bug is completely triaged. no need to add more infos here.

 - Alexander

Revision history for this message
John Vivirito (gnomefreak) wrote :

futwick wrote:
> Adobe.com home page in Firefox 3 running on Ubuntu
>
> ** Attachment added: "Adobe.com home page in Firefox 3 running on Ubuntu"
> http://launchpadlibrarian.net/15081007/Adobe.com-FF3-Ubuntu.png
>
The issue i have with calling this a flash bug is that it works fine on
Win. and fails on Ubuntu so maybe its not the site either.

--
Sincerely Yours,
     John Vivirito

https://launchpad.net/~gnomefreak
https://wiki.ubuntu.com/JohnVivirito
Linux User# 414246

Revision history for this message
Alexander Jones (alex-weej) wrote :

No, no, no!

It *is* a Flash issue, the Adobe Flash Player for Windows is a different
thing to the Adobe Flash Player for Linux.

It's the Adobe Flash Player for Linux at fault - Mozilla for Linux/X11 has
had windowless plugin support for ages now. Getting this fixed properly is
the sole responsibility of Adobe as it's their closed source software.

There's nothing we can do. This bug is triaged -- Please stop adding me
toos!

Thanks

Revision history for this message
futwick (futwick) wrote : Re: flash plugin always rendered on top of html
Revision history for this message
futwick (futwick) wrote :

I suggest we all register and vote for this bug http://bugs.adobe.com/jira/browse/FP-80 in Adobe's Bug System.

Revision history for this message
Jordan Erickson (lns) wrote : Re: [Bug 49613] Re: flash plugin always rendered on top of html

I definitely agree (just signed up and voted - it doesn't take as long
as you'd think). The only way we'll get Adobe to pay attention to this
is to use their systems to prove to them we're determined. 45 votes so
far, let's get it to 100...

- Jordan

futwick wrote:
> I suggest we all register and vote for this bug
> http://bugs.adobe.com/jira/browse/FP-80 in Adobe's Bug System.
>

--
Jordan Erickson
Owner, Logical Networking Solutions
http://www.logicalnetworking.net
707-636-5678

Latest LNS Blogs - http://blogs.logicalnetworking.net

 The real RocketMan
 Computerworld.com examines Ubuntu Linux
 Exhaust from cars causing flowers to lose their scent?

description: updated
Revision history for this message
John Vivirito (gnomefreak) wrote :

Alexander Jones wrote:
> No, no, no!
>
> It *is* a Flash issue, the Adobe Flash Player for Windows is a different
> thing to the Adobe Flash Player for Linux.
>
> It's the Adobe Flash Player for Linux at fault - Mozilla for Linux/X11 has
> had windowless plugin support for ages now. Getting this fixed properly is
> the sole responsibility of Adobe as it's their closed source software.
>
> There's nothing we can do. This bug is triaged -- Please stop adding me
> toos!
>
> Thanks
>
>
> ** Attachment added: "unnamed"
> http://launchpadlibrarian.net/15082930/unnamed
>
Yeah i found out the issue right after commenting on this bug. We are
waiting for flash update to fix this as Mozilla already ships the fix on
thier end but still need flash to fix thiers

--
Sincerely Yours,
     John Vivirito

https://launchpad.net/~gnomefreak
https://wiki.ubuntu.com/JohnVivirito
Linux User# 414246

Revision history for this message
Xeno Campanoli (xeno) wrote : Re: Flash content always on top of web pages

There was word that the GNUy flash was working. Perhaps it's time for Debian/Ubuntu to start delivering that and drop Adobe.

Revision history for this message
jamescridland (james-cridland) wrote :

As a reporter of a bug marked as identical, I'm concerned that the bug I reported is not "identical".

Take a look at http://www.bbc.co.uk/ at the top right-hand side, and you'll note that the clock has an unpleasant black background (unlike Windows/Mac). It should be a mostly transparent clock.

To my view, this is immaterial as to whether Flash is "on top" (don't care in this case as long as transparency works).

Do I need to report a *separate* bug again?

Revision history for this message
Alexander Jones (alex-weej) wrote : Re: [Bug 49613] Re: Flash content always on top of web pages

No. The fix for that will come hand in hand.

Revision history for this message
joe_d (joseph-d) wrote : Re: Flash content always on top of web pages

Voting for this buy at http://bugs.adobe.com/jira/browse/FP-80 is imperative to ensure that Adobe gives it the attention it deserves.

I have also started a new thread in the Adobe Flash 10 Beta discussion forum here:

http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=72&catid=675&threadid=1365111&enterthread=y

Posting to both this forum with references to this thread and the bug thread will help highlight this issue to Adobe and other users who are affected by it but don't know what they're supposed to do about it.

We are coming up on the SECOND ANNIVERSARY (June 13th 2006!!!) of when this bug was originally files on Launchpad, so it's about time something was done about this.

Revision history for this message
Xeno Campanoli (xeno) wrote :

With respect, there is an incentive for Adobe to do nothing until a competing activity threatens its revenues critically, and the only reasonable countervaling power in such a matter is a free software corollary, like a GNU flash plugin, that works better and threatens to take the lead in standardizations. Interestingly, it is also a power point because anyone who does so, in any capacity will be highly interesting to any employer, and the entire engineering community, for the rest of her/his life for such a coup / accomplishment.

Yes, that's easy to say. It's also obvious if you think about it a minute. Most engineers will not because they are already busy with other stuff right now, price of oil being such an important economic substitute for engineering (which is to say, price rise in one will push rise in other).

Revision history for this message
Ari (ari-reads) wrote :

Just added my comments to:

http://bugs.adobe.com/jira/browse/FP-80#action_184894

It's a real shame to have this very basic limitation in what is nowadays the most important desktop tool.

I'm also writing emails to the website administrators of sites I'd like to access but can't properly use due to this bug. Asking them to remove flash content or at least to move within the page to make the site usable.

Revision history for this message
Alexander Jones (alex-weej) wrote : Re: Adobe Flash does not support WMODE

I've updated the bug title to reflect the actual bug, not the symptoms.

description: updated
Revision history for this message
deadowl (deadowl) wrote :

Anyone know if Adobe has any semblance of a time for this?

Revision history for this message
Alexander Jones (alex-weej) wrote : Re: [Bug 49613] Re: Adobe Flash does not support WMODE (Flash content always rendered on top of web pages)

Fair enough. :)

Revision history for this message
In , Bjorn (bjorn-nostvold) wrote :

Bug report for gnash:
https://savannah.gnu.org/bugs/?23435

Please vote (on the gnash site) to have this fixed.
This bug affects both gnash and the official flash plug-in, and it would be great if it was fixed in the free version first!

Revision history for this message
XmIsTeR (xmisterhu) wrote : Re: Adobe Flash does not support WMODE (Flash content always rendered on top of web pages)

With the latest flash player 10 beta, the bug is fixed :)
But the performance is very poor...let's hope they'll improve that for the final relase.

Revision history for this message
Daniel T Chen (crimsun) wrote :

Fixed in Flash 10 beta 2.

Changed in flashplugin-nonfree:
status: Confirmed → Fix Released
Revision history for this message
brad (bradlambeth) wrote :

Still not fixed for me. Flash 10 beta 2 in firefox 3.0 on hardy amd64, using nspluginwrapper, which may have something to do with it.

Revision history for this message
Alexander Jones (alex-weej) wrote : Re: [Bug 49613] Re: Adobe Flash does not support WMODE (Flash content always rendered on top of web pages)

I'm seeing no fix on http://www.southern-electric.co.uk/ -- BUT I am
using NSPluginWrapper - perhaps THAT also needs to be "fixed".

Can the people for whom are reporting working or not working also
state whether they are using NSPluginWrapper (e.g. if you are on AMD64
or otherwise)?

Thanks.

Revision history for this message
XmIsTeR (xmisterhu) wrote : Re: Adobe Flash does not support WMODE (Flash content always rendered on top of web pages)

I'm NOT using ndiswrapper, and it works as I said before.
I can't test the southern-electric website, because it gives me an error("Not enough storage is available to process this command.") but I attached a screenshot of adobe's homepage.

Revision history for this message
XmIsTeR (xmisterhu) wrote :

Sorry, I meant nspluginwrapper :)

Revision history for this message
In , Matti-mversen (matti-mversen) wrote :

Adobe release a new beta Version of flash 10 at 02 July and the feature list contains :
Linux WMODE — new with 7/2/08 build

Revision history for this message
In , Wsheets (wsheets) wrote :

I just tried it with trunk and it actually works, even if it's
agonizingly slow and CPU intensive.

http://finance.yahoo.com/echarts?s=^DJI
uses flash heavily and a good example of how the new flash works
with linux. The dropdown menus (e.g. COMPARE) used to drop down
behind the chart and so were invisible. Now they're visible but
you wait 15 seconds or so for them to appear while chewing CPU
cycles like crazy. Well, at least it works, sort of.

Revision history for this message
joe_d (joseph-d) wrote : Re: Adobe Flash does not support WMODE (Flash content always rendered on top of web pages)

I am using NSPluginWrapper on an AMD64 and can confirm that this issue is NOT fixed in the latest beta of Flash 10.

My about:plugins in Firefox 3 reports the following:

File name: npwrapper.libflashplayer.so
Shockwave Flash 10.0.0 d525

The "fixed issues" list for the latest beta on the Adobe site does not seem to suggest that this issue has been addressed, either.

Revision history for this message
joe_d (joseph-d) wrote :

Sorry, I'm actually using NSPluginWrapper with Intel Core 2, not AMD64 :-)

Revision history for this message
In , Martijn-martijn (martijn-martijn) wrote :

Walter, perhaps file a new bug for that?

Revision history for this message
In , Stefan Thomas (justmoon) wrote :

No slowness here. Everything is perfect, menus display instantly, no problem.

Revision history for this message
In , nadavkav (nadavkav) wrote :

just in case not every one on this thread read the adobe bug reports for bug number: FP-80 [http://bugs.adobe.com/jira/browse/FP-80]
i am not sure if the phenomena (visual flickering and slowness) related to the flash player 10b2 is entirly the responsibility of adobe's flash player ? maybe it's got some issues with firefox or the graphic controller ? (os drivers or propriatry drivers ?)

anyways, it is not solved yet ! although there is some great progress :-)

here is the last remark i wrote there:
just updated FP to 10.0.0 d525 and re-check all the sites i have issues with transparency
using FF 3 and opera 9.51 on debian sid (updated) and fedora9 (updated).

in general:
FF3 on fedora (with intel open source video driver) crashes almost every time i get into a site that uses wmode with flash so i had to go back to FP10b1.

on debin sid (with ati M7500 open source video driver) it did not crash the browsers but was not so usable too :-(

i tried to disable and enable hardware acceleration with no help.

on debian sid machine i got the transparency working on the test site :
http://www.communitymx.com/content/source/E5141/wmodetrans.htm
works fine on FF3 and OPERA951 :-)

my wishlist site :-( [http://www.galim.org.il/fields/holidays.html] it looks like it is working
but the entire site "flashs" and flickers (not in a good way) and is not usable.
thou, transparency seems to work !

http://www.fox.com/house/ - transparency seems to work but the entire site flickers :-(

youtube - sound hangs and video does not play :-(

Revision history for this message
In , Wsheets (wsheets) wrote :

In my case the problem is the opensource nv driver has no
accelerated graphics and so the cpu does all the work. When
I switch to the proprietary driver from nVidia the slowness
goes away, although there are still some minor rendering bugs.
Still, it's a major step forward.

Revision history for this message
Alexander Sack (asac) wrote : Re: [Bug 49613] Re: Adobe Flash does not support WMODE (Flash content always rendered on top of web pages)

On Thu, Jul 03, 2008 at 04:29:40PM -0000, Alexander Jones wrote:
> I'm seeing no fix on http://www.southern-electric.co.uk/ -- BUT I am
> using NSPluginWrapper - perhaps THAT also needs to be "fixed".

 affects ubuntu/nspluginwrapper
 status confirmed

nspluginwrapper needs to be fixed too - not sure how hard that is
though.

 - Alexander

Revision history for this message
brad (bradlambeth) wrote : Re: Adobe Flash does not support WMODE (Flash content always rendered on top of web pages)

The most recent release of nspluginwrapper (1.1.0) has support for Flash 10 beta 2. I can confirm that the issue is now fixed with these updates, yay!

Revision history for this message
brad (bradlambeth) wrote :

Release 1.1.0 has support for Flash 10 beta 2.

Changed in nspluginwrapper:
status: Confirmed → Fix Released
Revision history for this message
Alexander Jones (alex-weej) wrote :

Easy tiger. Fixed in 1.1.0, which is the upstream development branch. This is far from released in Ubuntu.

Changed in nspluginwrapper:
status: Fix Released → New
Revision history for this message
Tien Nguyen (tienhn) wrote : Re: [Bug 49613] Re: Adobe Flash does not support WMODE (Flash content always rendered on top of web pages)

Not to mention that Flash 10 beta is slow like snail! Try to view any
movie at www.hulu.com and you will see how slow it is compare to version
9.

On Fri, 2008-07-11 at 15:23 +0000, Alexander Jones wrote:

> Easy tiger. Fixed in 1.1.0, which is the upstream development branch.
> This is far from released in Ubuntu.
>
> ** Changed in: nspluginwrapper (Ubuntu)
> Status: Fix Released => New
>

Revision history for this message
brad (bradlambeth) wrote : Re: Adobe Flash does not support WMODE (Flash content always rendered on top of web pages)

Oh, I'm sorry, I thought this bug report was about wmode in flash for linux, not the relative performance of flash 10 vs. flash 9. I thought people who were subscribed to this bug report would like to know that it is possible to fix the issue for their system, regardless of whether or not it's available in the ubuntu repositories yet or not.

Revision history for this message
Alexander Jones (alex-weej) wrote :

Fixed in 1.1.0 development branch upstream.

Changed in nspluginwrapper:
status: New → Fix Released
Revision history for this message
Alexander Jones (alex-weej) wrote :

Brad, there is no need to get so defensive. The (Ubuntu) items listed in the "Affects" table relate to the actual packages that we distribute. It should not be changed to Fix Released until it the actual fix hits the "proposed" archive.

You may add an "upstream" and mark that as Fix Released, if that floats your boat. I have done this as an example. You must leave the bug open against the Ubuntu package in order for the packagers to know that this still needs resolving by packaging the newer version.

Revision history for this message
John Vivirito (gnomefreak) wrote :

This is not fixed in 10 at all atleast our builds also happens in gnash
Today is the day i found out both.

Changed in flashplugin-nonfree:
status: Fix Released → Incomplete
Revision history for this message
Dara Adib (daradib) wrote :

Why is the bug marked incomplete? Since the bug has duplicates, it should be at least confirmed.

Revision history for this message
John Vivirito (gnomefreak) wrote : Re: [Bug 49613] Re: [MASTER] Adobe Flash does not support WMODE (Flash content always rendered on top of web pages)

Dara Adib wrote:
> Why is the bug marked incomplete? Since the bug has duplicates, it
> should be at least confirmed.
>
>
easy enough to change. thanks for catching this.

 status confirmed

Changed in firefox:
status: Fix Released → Confirmed
Revision history for this message
Dara Adib (daradib) wrote :

Gnash is also affected.

Changed in gnash:
status: New → Confirmed
Changed in flashplugin-nonfree:
status: Incomplete → Confirmed
Changed in firefox:
status: Confirmed → Fix Released
Revision history for this message
In , Pat-engsoc (pat-engsoc) wrote :

Interestingly, the Acer Aspire One manages to do all this with Firefox2.0.0.14 and Flash9r124.

Unfortunately, Linpus' source is nowhere to be found. But their libflashplayer.so is definitely unmodified.

Revision history for this message
In , Wsheets (wsheets) wrote :

Pat, have you tried the yahoo.com link in my comment #137 ?
The dropdown menus on that page drop down *behind* the chart
and are unreadable with any Flash but 10beta. At least for me.

Revision history for this message
greg (grigorig) wrote :

I can confirm that the new nspluginwrapper 1.1.0 development version works a lot better than the old 0.9.x/1.0.0. WMODE is indeed fixed, I can see the menus at adobe.com for example. And at least for me, Flash 10 is a whole lot better in terms of performance -- especially with activated hardware acceleration.

With Intrepid shipping Flash 10, I think the new nspluginwrapper is a must!

Revision history for this message
Tien Nguyen (tienhn) wrote :

@Grigori,
Could you help me with direction to install nspluginwrapper 1.1.0?
Thanks,

Revision history for this message
greg (grigorig) wrote :

Nothing special at all. apt-get build-dep nspluginwrapper && ./configure && make && make install. You need to re-install all your wrapped plugins into nspluginwrapper after that. That's it.

Is this really the right platform to discuss this?

Revision history for this message
Tien Nguyen (tienhn) wrote :

Thanks for this reply. I tried the Flash 10 beta, Aug-2008 version from here: http://labs.adobe.com/technologies/flashplayer10/ and It seems to resolve the problem. All of the mentioned troubled web site works fine for me with Flash 10 beta plug in installed.

Still have not used nspluginwrapper.

Revision history for this message
Jessie Lawrence (nightwolf177-deactivatedaccount) wrote :

hey, this only happens to me in ubuntu. on mac or fail-dows it doesnt happen.

http://www.dell.com look at the menus on their homepage, obscured by the flash

Revision history for this message
Scott Talbert (swt-techie) wrote :

Now that Adobe has officially released Flash Player 10 (with Linux WMODE support), would it be possible to get it released for Hardy?

Thanks,
Scott

Revision history for this message
Alexander Jones (alex-weej) wrote : Re: [Bug 49613] Re: [MASTER] Adobe Flash does not support WMODE (Flash content always rendered on top of web pages)

I guess it will come in due course. It's in multiverse so it's not subject
to the version stability requirements that packages in main are.

Daniel T Chen (crimsun)
Changed in nspluginwrapper:
status: New → Fix Released
Changed in flashplugin-nonfree:
status: Confirmed → Fix Released
Revision history for this message
Jordan Erickson (lns) wrote :

---
# dpkg -l|grep flashplugin
ii adobe-flashplugin 10.0.12.36-1hardy1
---
# dpkg -l|grep firefox-3.0
ii firefox-3.0 3.0.3+build1+nobinonly-0ubuntu0.8.04.1 safe and easy web browser from Mozilla
---
# uname -a
Linux ltsp-server 2.6.24-21-server #1 SMP Wed Oct 22 00:18:13 UTC 2008 i686 GNU/Linux
---

From an LTSP thin-client, I go to http://change.gov/newsroom/blog/ - and view the YouTube video, and then mouse-over the "Agenda" menu, it shows BEHIND the YouTube flash window. So it looks like it's not fixed all together yet.. ?

Revision history for this message
goto (gotolaunchpad) wrote :

With a 64 bit up to date Intrepid and gnash I still have this problem.
Thanks.

Revision history for this message
3Olivier (rogericke) wrote :

I opened bug 312973 with same problem:

Running ubuntu 8.04 with firefox 3.0.5 and flash 10
I try website truthofthespoon.net/index03.html and the menu does not show the letters, the scroll-down menu does not work (see attached screen print).
On website vueling.com when you check the date option, the main advert stays on top therefore hiding any possibility of choosing a date.
On a windows machine with same firefox and flash, the display is correct.
My linux machine is a laptop FUJITSU-SIEMENS ESPRIMO V5535.

By the way, I'm a newbie.

Revision history for this message
mtb-cliff (pagedynamix) wrote :

I agree that this is still an issue with FF3.0.5 and Adobe Flash 10.0 r15 in that the flash overlays cover up the DHTML. The funny things is that you can see the DHTML being rendered and then the Flash covers it up. It is especially noticeable at teh following airmiles.ca site:

www.airmiles.ca and the rewards link: https://www.airmiles.ca/arrow/RewardsHome?selectedCategoryId=cat670016

Cliff.

Revision history for this message
mtb-cliff (pagedynamix) wrote :

Scratch my last comment. I still had the /etc/adobe/mms.cfg file in place. As soon as I commented out the WindowlessDisable=True everything worked as it supposed to work.

Revision history for this message
Tien Nguyen (tienhn) wrote :

Hi All,
I am on AMD64 platform. I found the release candidate Flash 10 from Adobe lab:

http://labs.adobe.com/technologies/flashplayer10/releasenotes_64bit.html

This version does not need nspluginwrapper and I have no problem viewing any of the trouble flash pages listed here.

Hope this helps,
Cheers,

Revision history for this message
Witold Mamczarz (m-mamczarz) wrote :

The new Adobe plug-in seems to solve the problem. What I did is:
1. I opened Synaptic
2. Pushed on search button
3. Typed "flash"
4. I Found Installed plug-in (it was flashplugin-nonfree 9.0.152) and marked it to uninstall
5. Processed changes
6. Point 2 and 3 again
7. I found the new Adobe plug-in (it was the first one Adobe-flashplugin 10.0.15.3) and installed it

When I installed Adobe plug-in without uninstalling old version the problem stayed.

enjoy

Revision history for this message
John Vivirito (gnomefreak) wrote :

On 02/05/2009 07:14 AM, Witold Mamczarz wrote:
> The new Adobe plug-in seems to solve the problem. What I did is:
> 1. I opened Synaptic
> 2. Pushed on search button
> 3. Typed "flash"
> 4. I Found Installed plug-in (it was flashplugin-nonfree 9.0.152) and marked it to uninstall
> 5. Processed changes
> 6. Point 2 and 3 again
> 7. I found the new Adobe plug-in (it was the first one Adobe-flashplugin 10.0.15.3) and installed it
>
> When I installed Adobe plug-in without uninstalling old version the
> problem stayed.
>
> enjoy
>
Starting the the AMD plugin it is not stable and I'm kind of sceptical
about adding it to any release including Jaunty without a stable release
ETA from Adobe.
We do not recommend using adobes version. Are you able to reproduce this
with our version of flash 10?

--
Sincerely Yours,
    John Vivirito

https://launchpad.net/~gnomefreak
https://wiki.ubuntu.com/JohnVivirito
Linux User# 414246

"How can i get lost, if i have no where to go"
    -- Metallica from Unforgiven III

Revision history for this message
Alexander Jones (alex-weej) wrote : Re: [Bug 49613] Re: [MASTER] Adobe Flash does not support WMODE (Flash content always rendered on top of web pages)

Jaunty's packaged Flash 10 is fine for me on AMD64.

Revision history for this message
Richard Sadie (sp-launchpad-fishtank) wrote :

I'm using:

Ubuntu 8.04 (Hardy)
Firefox 3.0.6
adobe-flashplugin 10.0.15.3-1hardy2

and I'm still having the problem - any advice please?

I was previously using flashplugin-nonfree but following the advice of a comment here I uninstalled it and installed the flash package above, but the problem has remained.

Thanks!

Revision history for this message
Alexander Jones (alex-weej) wrote :

Firstly check you have nothing in /etc/adobe

Secondly tell us what website you're viewing and we can check.

Revision history for this message
Richard Sadie (sp-launchpad-fishtank) wrote :

Hi Alexander,

Nothing in /etc/adobe (dir doesn't exist)

its happening on multiple sites, but off the top of my head:

www.nashuamobile.com -> the dropdown menu items just above the blackberry flash ad (such as "You@NashuaMobile","Phones" etc.).

Thanks!

Revision history for this message
Witold Mamczarz (m-mamczarz) wrote : Re: [Bug 49613] Re: [MASTER] Adobe Flash does not support WMODE (Flash content always rendered on top of web pages)

Check in Firefox which plugin it uses. Should be "Shockwave Flash 10.0 r15".
If it is possible you have another else plugin installed.

The site seems be showed correctly. (Ubuntu 8.04, firefox 3.06)

Richard Sadie pisze:
> Hi Alexander,
>
> Nothing in /etc/adobe (dir doesn't exist)
>
> its happening on multiple sites, but off the top of my head:
>
> www.nashuamobile.com -> the dropdown menu items just above the
> blackberry flash ad (such as "You@NashuaMobile","Phones" etc.).
>
> Thanks!
>
>

Revision history for this message
mtb-cliff (pagedynamix) wrote : Re: [Bug 49613] Re: [MASTER] Adobe Flash does not support WMODE (Flash content always rendered on top of web pages)

Works for me as well. I previously had issues, but that was due to the
"fixes" that I had in for the earlier releases of the Flash player
plugin. However, after I edited the mms.cfg in /etc/adobe it works fine.
I am running 10.0 r15 as well in Ubuntu 8.04 with FF 3.06.

Just out of curiousity, are you running NoScript as a FF Plugin and
AdBlock Plus? If so, please check the settings to ensure that you are
allowing the site.

Witold Mamczarz wrote:
> Check in Firefox which plugin it uses. Should be "Shockwave Flash 10.0 r15".
> If it is possible you have another else plugin installed.
>
> The site seems be showed correctly. (Ubuntu 8.04, firefox 3.06)
>
>
> Richard Sadie pisze:
>
>> Hi Alexander,
>>
>> Nothing in /etc/adobe (dir doesn't exist)
>>
>> its happening on multiple sites, but off the top of my head:
>>
>> www.nashuamobile.com -> the dropdown menu items just above the
>> blackberry flash ad (such as "You@NashuaMobile","Phones" etc.).
>>
>> Thanks!
>>
>>
>>
>
>

Revision history for this message
Richard Sadie (sp-launchpad-fishtank) wrote :

Yep Firefox shows it's using "Shockwave Flash 10.0 r15".
No NoScript or Adblock installed :(

Revision history for this message
John Vivirito (gnomefreak) wrote : Re: [Bug 49613] Re: [MASTER] Adobe Flash does not support WMODE (Flash content always rendered on top of web pages)

On 02/12/2009 04:16 PM, Richard Sadie wrote:
> I'm using:
>
> Ubuntu 8.04 (Hardy)
> Firefox 3.0.6
> adobe-flashplugin 10.0.15.3-1hardy2
>
> and I'm still having the problem - any advice please?
>
> I was previously using flashplugin-nonfree but following the advice of a
> comment here I uninstalled it and installed the flash package above, but
> the problem has remained.
>
> Thanks!
>
This was a bad idea. by installiog the upstream package as oppsed to
ours its hard to test ours if we add a updated package. If upstream
package has same issue its most likely upstreams fault. Please try to
locate their bug tracker and report it ther as well.

--
Sincerely Yours,
    John Vivirito

https://launchpad.net/~gnomefreak
https://wiki.ubuntu.com/JohnVivirito
Linux User# 414246

"How can i get lost, if i have no where to go"
    -- Metallica from Unforgiven III

Revision history for this message
nblracer (nblracer) wrote :

Still having problems on
citi cards page

running ubuntu intriped
with flash 10

Revision history for this message
In , Bill-wg9s (bill-wg9s) wrote :

*** Bug 461467 has been marked as a duplicate of this bug. ***

Revision history for this message
In , Bill-wg9s (bill-wg9s) wrote :

*** Bug 462489 has been marked as a duplicate of this bug. ***

avracx (jhon-cewex)
Changed in flashplugin-nonfree (Ubuntu):
status: Fix Released → Confirmed
Changed in nspluginwrapper (Ubuntu):
status: Fix Released → Confirmed
Revision history for this message
John Vivirito (gnomefreak) wrote : Re: [Bug 49613] Re: [MASTER] Adobe Flash does not support WMODE (Flash content always rendered on top of web pages)

On 07/14/2009 09:02 AM, avracx wrote:
> ** Changed in: flashplugin-nonfree (Ubuntu)
> Status: Fix Released => Confirmed
>
> ** Changed in: nspluginwrapper (Ubuntu)
> Status: Fix Released => Confirmed
>
Wasn't this fixed in flash 10?

--
Sincerely Yours,
    John Vivirito

https://launchpad.net/~gnomefreak
https://wiki.ubuntu.com/JohnVivirito
Linux User# 414246

"How can i get lost, if i have no where to go"
    -- Metallica from Unforgiven III

decorum (decorum)
Changed in flashplugin-nonfree (Ubuntu):
status: Confirmed → Fix Committed
Changed in firefox:
status: Fix Released → Fix Committed
Revision history for this message
Micah Gersten (micahg) wrote :

Please don't change the status of upstream bugs.

Changed in firefox:
status: Fix Committed → Fix Released
Changed in firefox-3.0 (Ubuntu):
status: Fix Released → Fix Committed
Micah Gersten (micahg)
Changed in firefox-3.0 (Ubuntu):
status: Fix Committed → Fix Released
Revision history for this message
John Vivirito (gnomefreak) wrote :

On 09/22/2009 03:31 AM, Micah Gersten wrote:
> ** Changed in: firefox-3.0 (Ubuntu)
> Status: Fix Committed => Fix Released
>
ok people have been changing status of packages. can you
please let us know why you are changing status. micah i know
why you did but i deleted "i hate vista's" email by mistake.
however this goes for all.

--
Sincerely Yours,
    John Vivirito

https://launchpad.net/~gnomefreak
https://wiki.ubuntu.com/JohnVivirito
Linux User# 414246

"How can i get lost, if i have no where to go"
    -- Metallica from Unforgiven III

Revision history for this message
Umang Varma (umang) wrote :

I'm still encountering this problem on Ubuntu 9.10 Karmic, Firefox 3.5 (3.5.6+nobinonly-0ubuntu0.9.10.1), Shockwave Flash 10.0 r42.

Do I need to install anything extra?

Thanks

Revision history for this message
Micah Gersten (micahg) wrote :

@umang

This was fixed in Firefox 3. If you feel you are experiencing a regression, please file a new bug (ubuntu-bug firefox-3.5) and mention this bug #.

Thanks.

Revision history for this message
Pelládi Gábor (pelladigabor) wrote :

Umang, are you using 64 bit? By default, Ubuntu uses 32 bit flash player with nspluginwrapper. Try the 64 bit flash player from here: http://labs.adobe.com/technologies/flashplayer10/64bit.html

Revision history for this message
Umang Varma (umang) wrote :

No, I have an "P III", so I am using 32 bit Ubuntu (and 32 bit flash also).

Revision history for this message
Nicolò Chieffo (yelo3) wrote :

I don't have this problem with nspluginwrapper in the developement version of ubuntu. can we close the task?

Revision history for this message
Umang Varma (umang) wrote :

Yes. I won't be able to test this issue soon and seemed to be the only one affected at that point (I had asked a few people with similar configurations whether they had any problem). I'd assume it's fixed if nobody is affected.

Changed in firefox:
importance: Unknown → Medium
Revision history for this message
Tom Chiverton (bugs-launchpad-net-falkensweb) wrote :

There is also an updated official Adobe version of the 64bit Flash player here, as of earlier this week : http://labs.adobe.com/technologies/flashplayer10/
Please also note that Adobe hasn't recommended the use of nspluginwrapper for some time...

Revision history for this message
Thomas Hotz (thotz-deactivatedaccount) wrote :

Has anybody tested this with flash plugin version 11?

Changed in gnash (Ubuntu):
status: Confirmed → Invalid
Changed in nspluginwrapper (Ubuntu):
status: Confirmed → Fix Released
Changed in flashplugin-nonfree (Ubuntu):
status: Fix Committed → Incomplete
Revision history for this message
Thomas Hotz (thotz-deactivatedaccount) wrote :

This should be fixed now, please correct me if I'm wrong. Tested this page with Ubuntu 13.04 with Adobe flash player 11.2.x.x .

Changed in flashplugin-nonfree (Ubuntu):
status: Incomplete → Fix Released
Revision history for this message
In , Lucasgoodtech (lucasgoodtech) wrote :

Muito interessante, eu fiz o teste no site abaixo e me parece normal.

https://www.celular.eu.org

To post a comment you must log in.
This report contains Public information  
Everyone can see this information.

Other bug subscribers

Related questions

Remote bug watches

Bug watches keep track of this bug in other bug trackers.